Get Links
Quickly get url from selected link
Get Linksとは何ですか?
Get LinksはKaffeineによって開発されたChromeの拡張機能で、その主な機能は「Quickly get url from selected link」です。
拡張機能のスクリーンショット
Get Links拡張機能のCRXファイルをダウンロード
Get Links拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Sometimes its annoying opening all link one by one to get the complete url, this extension copy all url from a selection on a website page.
拡張機能の基本情報
名前 | |
ID | cmcenhpehcokkhgamlekcbgdlejddplp |
公式URL | https://chrome.google.com/webstore/detail/get-links/cmcenhpehcokkhgamlekcbgdlejddplp |
説明 | Quickly get url from selected link |
ファイルサイズ | 18.9 KB |
インストール数 | 390 |
現在のバージョン | 0.2 |
最終更新日 | 2015-01-25 |
公開日 | 2015-01-25 |
評価 | 1.50/5 合計 2 レビュー |
開発者 | Kaffeine |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "js": [ "contextScript.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "description": "Quickly get url from selected link", "manifest_version": 2, "name": "Get Links", "permissions": [ "contextMenus", "http:\/\/*\/*", "https:\/\/*\/*", "clipboardWrite", "clipboardRead" ], "version": "0.2", "icons": { "16": "icon-bitty.png", "48": "icon-small.png", "128": "icon-large.png" }, "browser_action": { "default_icon": "icon-large.png", "default_title": "Get Links" } } |