Favicon Changer

Favicon Changer

Lets you change favicons for your bookmarks, single webpages and entire websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/19.png",
    "default_popup": "popup.html",
    "default_title": "Favicon Changer"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/jquery.js",
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "Lets you change favicons for your bookmarks, single webpages and entire websites.",
  "icons": {
    "16": "images/16.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "manifest_version": 2,
  "name": "Favicon Changer",
  "options_page": "options.html",
  "permissions": [
    "<all_urls>",
    "tabs",
    "storage",
    "bookmarks",
    "unlimitedStorage"
  ],
  "version": "1.0.3"
}