Blur It Out

Blur It Out

A simple extension that blurs out words you don't like

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Blur It Out",
  "description": "A simple extension that blurs out words you don't like",
  "version": "1.2",
  "permissions": [
    "storage",
    "https://*/*",
    "http://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "css": [
        "mystyles.css"
      ],
      "js": [
        "third-party/jquery-1.12.0.min.js",
        "myscript.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "128": "images/icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon19.png",
      "38": "images/icon38.png"
    },
    "default_title": "Blur It Out Settings",
    "default_popup": "browser_action.html"
  },
  "manifest_version": 2
}