Blink
Downloads all links within a selection area.
Blinkとは何ですか?
Blinkはv.long128によって開発されたChromeの拡張機能で、その主な機能は「Downloads all links within a selection area.」です。
拡張機能のスクリーンショット
Blink拡張機能のCRXファイルをダウンロード
Blink拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Download multiple links at once by selecting a region on a webpage that encloses them. Once done downloading, simply turn Blink off to resume browsing.
拡張機能の基本情報
名前 | Blink |
ID | kejjgnpjiinckgkpefbeoofbooagfljl |
公式URL | https://chromewebstore.google.com/detail/blink/kejjgnpjiinckgkpefbeoofbooagfljl |
説明 | Downloads all links within a selection area. |
ファイルサイズ | 52.06 KB |
インストール数 | 160 |
現在のバージョン | 1.0 |
最終更新日 | 2015-06-05 |
公開日 | 2015-06-04 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | v.long128 |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Blink", "description": "Downloads all links within a selection area.", "version": "1.0", "browser_action": { "default_icon": "icon19-off.png", "default_title": "Blink is off." }, "icons": { "16": "icon-16.png", "24": "icon-24.png", "32": "icon-32.png", "48": "icon-48.png", "64": "icon-64.png", "128": "icon-128.png" }, "background": { "scripts": [ "events.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery-1.11.3.min.js", "content_script.js" ] } ], "permissions": [ "tabs", "http:\/\/*\/", "https:\/\/*\/", "downloads" ] } |