Tab Color Settings for Gainsight

Tab Color Settings for Gainsight

Update the standard favicon on Gainsight tabs with colored versions to easily distinguish each environment you work in.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tab Color Settings for Gainsight",
  "description": "Update the standard favicon on Gainsight tabs with colored versions to easily distinguish each environment you work in.",
  "version": "1.0.1",
  "permissions": [
    "tabs",
    "storage",
    "webNavigation"
  ],
  "icons": {
    "128": "assets/logo-inactive.png"
  },
  "browser_action": {
    "default_icon": "assets/logo-inactive.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.gainsightcloud.com/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ]
}