View href

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

Apa itu View href?

View href adalah ekstensi Chrome yang dikembangkan oleh https://rajbhadra.com, dan fitur utamanya adalah "This extension shows the href of all the links on a page along with its title while hovering".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi View href

Unduh file ekstensi View href dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama View href View href
ID jfgnoakafnnfkgciganaegpjnnejbimk
URL Resmi https://chromewebstore.google.com/detail/view-href/jfgnoakafnnfkgciganaegpjnnejbimk
Deskripsi This extension shows the href of all the links on a page along with its title while hovering
Ukuran File 3.72 KB
Jumlah Instalasi 84
Versi Saat Ini 1.0
Terakhir Diperbarui 2014-07-07
Tanggal Publikasi 2014-07-07
Pengembang https://rajbhadra.com
Tipe Pembayaran free
Bahasa yang Didukung 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"
            ]
        }
    ]
}