Content Censor

Content Censor

Changes web pages with unpleasant things to less unpleasant things in the most childish manner imaginable.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Content Censor",
  "author": "Content Censor Developer",
  "description": "Changes web pages with unpleasant things to less unpleasant things in the most childish manner imaginable.",
  "version": "2.0.2",
  "icons": {
    "48": "contentcensor48.png",
    "128": "contentcensor128.png"
  },
  "browser_action": {
    "default_icon": "contentcensor48.png",
    "default_popup": "index.htm"
  },
  "background": {
    "scripts": [
      "eventPages.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery-2.1.4.min.js",
        "popup.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ]
}