View href

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

Co je View href?

View href je rozšíření Chrome vyvinuté https://rajbhadra.com, a jeho hlavní funkcí je „This extension shows the href of all the links on a page along with its title while hovering“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření View href

Stáhněte si soubory rozšíření View href ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název View href View href
ID jfgnoakafnnfkgciganaegpjnnejbimk
Oficiální URL https://chromewebstore.google.com/detail/view-href/jfgnoakafnnfkgciganaegpjnnejbimk
Popis This extension shows the href of all the links on a page along with its title while hovering
Velikost souboru 3.72 KB
Počet instalací 84
Aktuální Verze 1.0
Poslední Aktualizace 2014-07-07
Datum Vydání 2014-07-07
Vývojář https://rajbhadra.com
Typ Platby free
Podporované Jazyky 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"
            ]
        }
    ]
}