Colorfy

Colorfy

Change colors of elements on a web page easily.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Colorfy",
  "description": "__MSG_description__",
  "version": "0.9.3.6",
  "author": "Nikola Mandić",
  "manifest_version": 2,
  "default_locale": "en",
  "icons": {
    "16": "logo_16.png",
    "32": "logo_32.png",
    "64": "logo_64.png",
    "128": "logo_128.png"
  },
  "web_accessible_resources": [
    "assets/*",
    "colorfy.css"
  ],
  "browser_action": {
    "default_icon": "logo.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "incognito": "spanning",
  "content_scripts": [
    {
      "matches": [
        "*://*/*",
        "file://*/*"
      ],
      "all_frames": true,
      "js": [
        "backend.js"
      ],
      "css": [
        "colorfy.css"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage"
  ],
  "options_page": "options/options.html"
}