Pixelate

Pixelate

Reduce visual noise by making all tab icons to follow the same style.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Pixelate",
  "version": "1.0.3",
  "manifest_version": 2,
  "description": "Reduce visual noise by making all tab icons to follow the same style.",
  "homepage_url": "https://github.com/vectart/pixelate-chrome-extension",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "js/close-pixelate.js",
      "js/google-analytics-bundle.js",
      "src/bg/background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "tabs",
    "<all_urls>",
    "https://www.google-analytics.com/",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "src/inject/inject.js"
      ],
      "run_at": "document_end"
    }
  ]
}