View href

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

Co to jest View href?

View href to rozszerzenie Chrome opracowane przez https://rajbhadra.com, a jego główną funkcją jest „This extension shows the href of all the links on a page along with its title while hovering”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia View href

Pobierz pliki rozszerzeń View href w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa View href View href
ID jfgnoakafnnfkgciganaegpjnnejbimk
Oficjalny URL https://chromewebstore.google.com/detail/view-href/jfgnoakafnnfkgciganaegpjnnejbimk
Opis This extension shows the href of all the links on a page along with its title while hovering
Rozmiar pliku 3.72 KB
Liczba instalacji 84
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2014-07-07
Data Publikacji 2014-07-07
Deweloper https://rajbhadra.com
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}