Dediseedbox Torrent Uploader
This extension will recognise a .torrent file download and upload the .torrent file to a remote server running the rutorrent webui
Vad är Dediseedbox Torrent Uploader?
Dediseedbox Torrent Uploader är en Chrome-tillägg utvecklad av https://dediseedbox.com, och dess huvudfunktion är "This extension will recognise a .torrent file download and upload the .torrent file to a remote server running the rutorrent webui".
Tilläggsskärmbilder
Ladda ner Dediseedbox Torrent Uploader-förlängningens CRX-fil
Ladda ner Dediseedbox Torrent Uploader-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Grundläggande Information om Tillägg
| Namn | |
| ID | dodambeppkebncgeobibhlfblpifcgpl |
| Officiell webbadress | https://chromewebstore.google.com/detail/dediseedbox-torrent-uploa/dodambeppkebncgeobibhlfblpifcgpl |
| Beskrivning | This extension will recognise a .torrent file download and upload the .torrent file to a remote server running the rutorrent webui |
| Filstorlek | 568 KB |
| Antal Installationer | 357 |
| Aktuell Version | 0.1.2 |
| Senast Uppdaterad | 2017-02-01 |
| Publiceringsdatum | 2017-02-01 |
| Betyg | 5.00/5 Totalt 2 Betyg |
| Utvecklare | https://dediseedbox.com |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | http://dediseedbox.com |
| Stödda Språk | 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"
}
} | |