Add Favicon to the Bookmark Bar

Add Favicon to the Bookmark Bar

Add Favicon to the Bookmark Bar

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Add Favicon to the Bookmark Bar",
  "version": "1.0",
  "manifest_version": 2,
  "description": "Add Favicon to the Bookmark Bar",
  "author": "Vere Perrot",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "browser_action": {
    "default_icon": "images/icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "bookmarks",
    "tabs"
  ]
}