View href

View href

This extension shows the href of all the links on a page along with its title while hovering

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "View href",
  "short_name": "see href",
  "description": "This extension shows the href of all the links on a page along with its title while hovering",
  "version": "1.0",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "contentscript.js"
      ]
    }
  ]
}