Tab Colorizer | Customize your tab's icon!

Tab Colorizer | Customize your tab's icon!

Press Command+Shift+Space (or Ctrl+Shift+Space) to flip through tab icon colors.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Tab Colorizer | Customize your tab's icon!",
  "short_name": "Tab Icon Colorizer",
  "description": "Press Command+Shift+Space (or Ctrl+Shift+Space) to flip through tab icon colors.",
  "version": "0.9",
  "author": "Mathew Komyanek",
  "manifest_version": 2,
  "options_page": "options.html",
  "web_accessible_resources": [
    "options.html"
  ],
  "background": {
    "scripts": [
      "js/background_script.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "images/tabColorizer_16.png",
    "default_title": "Press Command+Shift+Space (or Ctrl+Shift+Space) to flip through tab icon colors.",
    "default_popup": "popup.html"
  },
  "commands": {
    "flip-color-forward": {
      "suggested_key": {
        "default": "Ctrl+Shift+Space",
        "mac": "Command+Shift+Space"
      },
      "description": "Flip colors"
    }
  },
  "icons": {
    "16": "images/tabColorizer_16.png",
    "32": "images/tabColorizer_32.png",
    "48": "images/tabColorizer_48.png",
    "128": "images/tabColorizer_128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "js/content_script.js"
      ]
    }
  ]
}