Releases: tusharnankani/blurrit
Releases Β· tusharnankani/blurrit
v1.0
v1.0 is out. Published the extension to the Web Store π₯³π
- Add error handling to avoid potential crashes.
- Keyboard Shortcut (Hot-Key) Toggle
Full Changelog: v0.3...v1.0
v0.3-alpha
Updates:
- refactor: Inject script on click
chrome.action.onClicked.addListener((tab) => { ... }
toggle ? (
chrome.scripting.insertCSS({
target: {tabId: tab.id},
css: `.blur { filter: blur(4px); }`
})
) : (
chrome.scripting.insertCSS({
target: {tabId: tab.id},
css: `.blur { filter: none; }`
})
);
v0.2-alpha
Major UX update
Momentarily un-blurs on hovering the blurred regions (UX 101)
- Removes the need to click a button over all.
Full Changelog: v0.1...v0.2
v0.1-alpha
Directly injects the script:
- Blurs the list of chats (Left side) of the WhatsApp Web view.
- Blurs the WhatsApp group/contact name.
- Blurs the WhatsApp name of the message.