Link Status WE

Link Status WE

Shows an indicator on the status tip along with the link address when the mouse cursor is over a link to a page you bookmarked or visited before.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "__MSG_extensionDescription__",
  "manifest_version": 2,
  "default_locale": "en",
  "name": "Link Status WE",
  "version": "1.0.12",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "permissions": [
    "bookmarks",
    "history",
    "storage"
  ],
  "background": {
    "scripts": [
      "defaults.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "linkstatus.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "web_accessible_resources": [
    "status.html",
    "status.js"
  ]
}