TorrentDay Batch Download
Adds checkboxes to search results on TorrentDay, allowing for batch download of torrent files
什么是TorrentDay Batch Download?
TorrentDay Batch Download是由parkinglotlust开发的Chrome扩展程序,该扩展的主要功能是“Adds checkboxes to search results on TorrentDay, allowing for batch download of torrent files”。
扩展截图
下载TorrentDay Batch Download扩展crx文件
下载TorrentDay Batch Download扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Adds checkboxes to search results on TorrentDay, allowing for batch download of torrent files 扩展基本信息
| 名称 | |
| ID | ieojlpifckmdkapbcijbcfjcfpicndhp |
| 官方URL | https://chromewebstore.google.com/detail/torrentday-batch-download/ieojlpifckmdkapbcijbcfjcfpicndhp |
| 简介 | Adds checkboxes to search results on TorrentDay, allowing for batch download of torrent files |
| 文件大小 | 11.82 KB |
| 安装次数 | 269 |
| 当前版本 | 0.0.4 |
| 更新时间 | 2015-09-17 |
| 上架时间 | 2015-09-17 |
| 评分 | 3.50/5 共4次评分 |
| 开发者 | parkinglotlust |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "TorrentDay Batch Download",
"version": "0.0.4",
"manifest_version": 2,
"browser_action": {
"default_icon": "icon.png",
"default_title": "TorrentDay Batch Download",
"default_popup": "about.html"
},
"permissions": [
"storage",
"downloads"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"http:\/\/www.torrentday.com\/*",
"https:\/\/www.torrentday.com\/*",
"http:\/\/torrentday\/*"
],
"js": [
"content.js"
]
}
]
} | |