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" ] } |