Toggle Website Colors (Tab)

Toggle Website Colors (Tab)

Adds a checkbox to the page context menu to toggle colors, set by the website author.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Toggle Website Colors (Tab)",
  "version": "2.4.1",
  "description": "__MSG_extensionDescription__",
  "applications": {
    "gecko": {
      "id": "{d9d33933-40dc-4da1-8dc5-5b0449ce7d46}",
      "strict_min_version": "57.0"
    }
  },
  "icons": {
    "24": "icons/colors_on.svg",
    "32": "icons/colors_on.svg",
    "50": "icons/colors_on.svg"
  },
  "homepage_url": "https://github.com/M-Reimer/togglewebsitecolors",
  "author": "Manuel Reimer",
  "background": {
    "scripts": [
      "storage.js",
      "background.js"
    ]
  },
  "page_action": {
    "default_icon": {
      "19": "icons/colors_on.svg",
      "38": "icons/colors_on.svg"
    },
    "default_title": "Toggle Website Colors",
    "browser_style": true
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "commands": {
    "_execute_page_action": {}
  },
  "permissions": [
    "activeTab",
    "tabs",
    "contextMenus",
    "<all_urls>",
    "storage"
  ],
  "default_locale": "en"
}