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 |
公式URL | 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" } } |