AWS Favicon Update

AWS Favicon Update

IAM shouldn't be the only tab with a unique favicon! This sets favicons for many AWS services, so your tabs make more sense.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "AWS Favicon Update",
  "description": "IAM shouldn't be the only tab with a unique favicon!  This sets favicons for many AWS services, so your tabs make more sense.",
  "version": "2.1",
  "author": "Jaime Barriga",
  "icons": {
    "16": "colorcube16.png",
    "48": "colorcube48.png",
    "128": "colorcube128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.aws.amazon.com/*",
        "https://*.amazonaws-us-gov.com/*"
      ],
      "js": [
        "faviconupdate.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "icons/*"
  ]
}