Skip to content

Releases: tusharnankani/blurrit

v1.0

07 Dec 10:11
2032591
Compare
Choose a tag to compare

v1.0 is out. Published the extension to the Web Store πŸ₯³πŸŽ‰

  • Add error handling to avoid potential crashes.
  • Keyboard Shortcut (Hot-Key) Toggle

Webstore link

Full Changelog: v0.3...v1.0

v0.3-alpha

12 Nov 12:20
Compare
Choose a tag to compare

Updates:

  • refactor: Inject script on click
chrome.action.onClicked.addListener((tab) => { ... } 
  • feat: Add a simple toggle button (#3, #4)
  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

13 Oct 16:05
Compare
Choose a tag to compare

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

11 Oct 20:54
622535d
Compare
Choose a tag to compare

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.