Link Revealer

Link Revealer

Show URLs when you hover over links into a webpage.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Link Revealer",
  "version": "0.3",
  "description": "Show URLs when you hover over links into a webpage.",
  "background": {
    "scripts": [
      "js/jquery-2.1.1.min.js",
      "js/default.js",
      "background.js"
    ]
  },
  "options_page": "options.html",
  "icons": {
    "16": "img/icon_16.png",
    "128": "img/icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "permissions": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "css/jquery.qtip.min.css",
        "css/font-awesome.min.css"
      ],
      "js": [
        "js/jquery-2.1.1.min.js",
        "js/jquery.qtip.min.js",
        "js/jquery.urldecoder.min.js",
        "js/script.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    "fonts/*"
  ]
}