Link Status Redux

Link Status Redux

Shows an indicator on a popup panel next to the link address when the mouse cursor is over a link to a page you have bookmarked or visited before, or if the link is currently open in a browser tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "__MSG_extensionDescription__",
  "manifest_version": 2,
  "default_locale": "en",
  "name": "Link Status Redux",
  "version": "3.20",
  "author": "Juha Aatrokoski",
  "icons": {
    "32": "icon.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "71.0"
    }
  },
  "permissions": [
    "bookmarks",
    "history",
    "storage",
    "tabs",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "defaults.js",
      "iframe.js",
      "plurals.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "iframe.js",
        "content.js"
      ],
      "run_at": "document_end",
      "match_about_blank": true,
      "all_frames": true
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true,
    "browser_style": true
  }
}