Dediseedbox Torrent Uploader
This extension will recognise a .torrent file download and upload the .torrent file to a remote server running the rutorrent webui
什么是Dediseedbox Torrent Uploader?
Dediseedbox Torrent Uploader是由https://dediseedbox.com开发的Chrome扩展程序,该扩展的主要功能是“This extension will recognise a .torrent file download and upload the .torrent file to a remote server running the rutorrent webui”。
扩展截图
下载Dediseedbox Torrent Uploader扩展crx文件
下载Dediseedbox Torrent Uploader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
| 名称 | |
| ID | dodambeppkebncgeobibhlfblpifcgpl |
| 官方URL | https://chromewebstore.google.com/detail/dediseedbox-torrent-uploa/dodambeppkebncgeobibhlfblpifcgpl |
| 简介 | This extension will recognise a .torrent file download and upload the .torrent file to a remote server running the rutorrent webui |
| 文件大小 | 568 KB |
| 安装次数 | 357 |
| 当前版本 | 0.1.2 |
| 更新时间 | 2017-02-01 |
| 上架时间 | 2017-02-01 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | https://dediseedbox.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | http://dediseedbox.com |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"version": "0.1.2",
"name": "Dediseedbox Torrent Uploader",
"description": "This extension will recognise a .torrent file download and upload the .torrent file to a remote server running the rutorrent webui",
"permissions": [
"*:\/\/*\/*",
"contextMenus",
"notifications",
"storage",
"tabs"
],
"background": {
"scripts": [
"data\/background.js"
]
},
"options_page": "data\/html\/options.html",
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"data\/content.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"page_action": {
"default_icon": "data\/img\/icon16.png"
},
"icons": {
"16": "data\/img\/icon16.png",
"48": "data\/img\/icon48.png",
"128": "data\/img\/icon128.png"
}
} | |