View href

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

What is View href?

View href is a Chrome extension developed by https://rajbhadra.com, and its main feature is "This extension shows the href of all the links on a page along with its title while hovering".

Extension Screenshots

screenshot

Download View href Extension CRX File

Download View href extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension helps the user to quickly view the href of a link without looking elsewhere by appending the href of the link to the title of the link. Thus the title and the href both can be viewed by a single glance. If the size of the href is greater than 50 characters, then it truncates the string upto 50 characters.                    

Extension Basic Information

Name View href View href
ID jfgnoakafnnfkgciganaegpjnnejbimk
Official URL https://chromewebstore.google.com/detail/view-href/jfgnoakafnnfkgciganaegpjnnejbimk
Description This extension shows the href of all the links on a page along with its title while hovering
File Size 3.72 KB
Installation Count 84
Current Version 1.0
Last Updated 2014-07-07
Publish Date 2014-07-07
Developer https://rajbhadra.com
Payment Type free
Supported Languages en
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"
            ]
        }
    ]
}