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 هو إضافة Chrome تم تطويرها بواسطة https://dediseedbox.com، والميزة الرئيسية لها هي "This extension will recognise a .torrent file download and upload the .torrent file to a remote server running the rutorrent webui".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Dediseedbox Torrent Uploader
قم بتنزيل ملفات الامتداد Dediseedbox Torrent Uploader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
معلومات أساسية عن التمديد
| الاسم | |
| 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"
}
} | |