Pesticide for Chrome with autoupdate

Pesticide for Chrome with autoupdate

This extension inserts (with auto reload) the Pesticide CSS into the current page, outlining each element.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Pesticide for Chrome with autoupdate",
  "short_name": "Pesticide with autoupdate",
  "description": "This extension inserts (with auto reload) the Pesticide CSS into the current page, outlining each element.",
  "version": "0.1",
  "permissions": [
    "activeTab",
    "tabs",
    "http://*/",
    "https://*/"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "pesticide_page.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "pesticide.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Toggle Pesticide with autoupdate",
    "default_icon": {
      "19": "images/toolbar-chrome.png",
      "38": "images/[email protected]"
    }
  },
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "web_accessible_resources": [
    "pesticide.min.css",
    "pesticide_page.js"
  ]
}