disable-HTML

disable-HTML

Provides switches to enable and disable CSS, Javascript, Images, Cookies and Popups.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "disable-HTML",
  "description": "Provides switches to enable and disable CSS, Javascript, Images, Cookies and Popups.",
  "version": "0.1.0",
  "permissions": [
    "tabs",
    "contentSettings",
    "storage",
    "*://*/*"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "browser_action": {
    "default_icon": "images/icon-24-browser.png",
    "default_popup": "popup/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  }
}