View href

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

什麼是View href?

View href是由https://rajbhadra.com開發的Chrome擴展程式,該擴展的主要功能是“This extension shows the href of all the links on a page along with its title while hovering”。

擴展截圖

screenshot

下載View href擴展crx文件

下載View href擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 View href View href
ID jfgnoakafnnfkgciganaegpjnnejbimk
官方網址 https://chromewebstore.google.com/detail/view-href/jfgnoakafnnfkgciganaegpjnnejbimk
簡介 This extension shows the href of all the links on a page along with its title while hovering
檔案大小 3.72 KB
安裝次數 84
目前版本 1.0
更新時間 2014-07-07
上架時間 2014-07-07
開發者 https://rajbhadra.com
付費類型 free
支援的語言 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"
            ]
        }
    ]
}