nyt_mod

nyt_mod

This extension allows you to dim a website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "nyt_mod",
  "description": "This extension allows you to dim a website.",
  "version": "1.1",
  "icons": {
    "16": "images/16.png",
    "128": "images/128.png"
  },
  "background": {
    "page": "background.html"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "storage",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/c_s.js",
        "js/jquery-1.8.3.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "browser_action": {
    "default_icon": "images/off.png",
    "default_popup": "popup.html"
  },
  "offline_enabled": true
}