Hover Link
When hovering over short url link or any link it will show the final destination URL.
什麼是Hover Link?
Hover Link是由connerb開發的Chrome擴展程式,該擴展的主要功能是“When hovering over short url link or any link it will show the final destination URL.”。
擴展截圖
下載Hover Link擴展crx文件
下載Hover Link擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Hover Link is a simple extension that allows you to view and copy short URL and normal URL links on websites. For the short URL links it will display their destination URL as well.
擴展基本資訊
名稱 | |
ID | ggbpdjpocpnohglmhmppdkimpoiklegb |
官方網址 | https://chrome.google.com/webstore/detail/hover-link/ggbpdjpocpnohglmhmppdkimpoiklegb |
簡介 | When hovering over short url link or any link it will show the final destination URL. |
檔案大小 | 60.52 KB |
安裝次數 | 423 |
目前版本 | 1.0 |
更新時間 | 2014-10-06 |
上架時間 | 2014-10-06 |
評分 | 2.44/5 共 9 次評分 |
開發者 | connerb |
付費類型 | free |
擴展官網 | http://www.connerb.com |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hover Link", "description": "When hovering over short url link or any link it will show the final destination URL.", "version": "1.0", "manifest_version": 2, "icons": { "48": "icons\/48x48.png" }, "background": { "page": "html\/background.html" }, "permissions": [ "*:\/\/*\/*", "storage", "webRequest", "webRequestBlocking" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/jquery-2.1.1.min.js", "js\/script.js" ], "css": [ "css\/script.css" ], "all_frames": false, "run_at": "document_end" } ], "options_page": "html\/options.html", "page_action": { "default_icon": { "19": "icons\/19x19.png" }, "default_title": "Hover Link", "default_popup": "html\/options.html" } } |