GetBlur.io

GetBlur.io

Secure your sensitive info by blurring and hiding any element text, image, input or paragraphs with single click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GetBlur.io",
  "version": "2.0.0",
  "manifest_version": 3,
  "description": "Secure your sensitive info by blurring and hiding any element text, image, input or paragraphs with single click.",
  "homepage_url": "https://getblur.io",
  "icons": {
    "16": "/images/BlurLogo16.png",
    "32": "/images/BlurLogo32.png",
    "48": "/images/BlurLogo48.png",
    "128": "/images/BlurLogo128.png"
  },
  "background": {
    "service_worker": "/js/background.js"
  },
  "action": {
    "default_icon": "/images/BlurLogo16.png",
    "default_title": "GetBlur.io"
  },
  "permissions": [
    "activeTab",
    "storage",
    "scripting"
  ],
  "content_scripts": [
    {
      "css": [
        "styles.css"
      ],
      "js": [
        "/js/content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://3.basecamp.com/*"
      ]
    }
  ]
}