Color Picker

Color Picker

Change bgcolor to dark grey and font color to dark green. Press the icon next to the address bar to toggle on/off.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Color Picker",
  "version": "1.2",
  "description": "Change bgcolor to dark grey and font color to dark green.\nPress the icon next to the address bar to toggle on/off.",
  "icons": {
    "16": "color_picker.png",
    "48": "color_picker.png",
    "128": "color_picker.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    "styles.css",
    "color_picker.png",
    "color_picker_disable.png"
  ],
  "browser_action": {
    "default_icon": "color_picker.png"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ]
}