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 |
官方網址 | 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" ] } |