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