Custom Colors

Custom Colors

Give color to your favourite websites!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Custom Colors",
  "short_name": "CustomColors",
  "version": "3.0.0.3",
  "default_locale": "en",
  "description": "Give color to your favourite websites!",
  "icons": {
    "16": "extension_icons/peaceandlove-16.png",
    "32": "extension_icons/peaceandlove-32.png",
    "48": "extension_icons/peaceandlove-48.png",
    "128": "extension_icons/peaceandlove-128.png"
  },
  "browser_action": {
    "default_title": "Custom Colors: edit your sites' settings.",
    "default_popup": "pop-up/pop-up.html"
  },
  "background": {
    "scripts": [
      "background_scripts/initialize_extension.js",
      "background_scripts/on_popup_close.js"
    ],
    "persistent": false
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+1"
      },
      "description": "Enable/disable Edition Mode"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery/jquery-3.4.1.min.js",
        "jquery/jquery-ui.min.js",
        "content_scripts/utils/utils.js",
        "content_scripts/set_bg_color.js",
        "content_scripts/version_adapter.js"
      ],
      "css": [
        "styles/blackground.css"
      ]
    }
  ],
  "permissions": [
    "*://*/*",
    "storage",
    "tabs"
  ]
}