Straight to the Link

Straight to the Link

Scrolls to and highlights the backlink

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Straight to the Link",
  "description": "Scrolls to and highlights the backlink",
  "version": "1.0.6",
  "options_page": "options.html",
  "permissions": [
    "storage",
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "img/16.png",
    "48": "img/48.png",
    "128": "img/128.png"
  },
  "browser_action": {
    "default_title": "Set the domain",
    "default_icon": "img/16.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "cont_script.js"
      ]
    }
  ],
  "manifest_version": 2
}