Bookmark Highlighter

Highlights links to any URLs that are bookmarked
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Bookmark Highlighter",
  "version": "2.2resigned1",
  "description": "Highlights links to any URLs that are bookmarked",
  "icons": {
    "48": "icons/highlighter-48.png",
    "96": "icons/highlighter-96.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "backgroundScript.js"
    ]
  },
  "permissions": [
    "bookmarks",
    "storage"
  ],
  "options_ui": {
    "page": "options.html"
  },
  "applications": {
    "gecko": {
      "id": "jid0-CNA8w9TYZz7H2Wrq5ZfmSO5yB0I@jetpack"
    }
  }
}