View href

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

Vad är View href?

View href är en Chrome-tillägg utvecklad av https://rajbhadra.com, och dess huvudfunktion är "This extension shows the href of all the links on a page along with its title while hovering".

Tilläggsskärmbilder

screenshot

Ladda ner View href-förlängningens CRX-fil

Ladda ner View href-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn View href View href
ID jfgnoakafnnfkgciganaegpjnnejbimk
Officiell webbadress https://chromewebstore.google.com/detail/view-href/jfgnoakafnnfkgciganaegpjnnejbimk
Beskrivning This extension shows the href of all the links on a page along with its title while hovering
Filstorlek 3.72 KB
Antal Installationer 84
Aktuell Version 1.0
Senast Uppdaterad 2014-07-07
Publiceringsdatum 2014-07-07
Utvecklare https://rajbhadra.com
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}