Last active
August 25, 2025 21:14
-
-
Save hkfuertes/7e15e54f174bd7c0576f59701750f7e1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "Plugins HK", | |
| "author": "hkfuertes", | |
| "sources": [ | |
| { | |
| "name": "Torrentio Series", | |
| "version": 1, | |
| "about": "Integración con Torrentio (Stremio) para series desde varios proveedores.\n", | |
| "website": "https://torrentio.strem.fun", | |
| "tags": [ | |
| { | |
| "name": "Reliable", | |
| "color": "34c759" | |
| }, | |
| { | |
| "name": "TV" | |
| } | |
| ], | |
| "jsonParser": { | |
| "searchUrl": "/providers=mejortorrent,wolfmax4k|sort=size|qualityfilter=other,scr,cam,unknown/stream/series/{query}.json", | |
| "results": "streams", | |
| "magnetHash": { | |
| "query": "infoHash" | |
| }, | |
| "magnetLink": { | |
| "template": "magnet:?xt=urn:btih:{infoHash}" | |
| }, | |
| "title": { | |
| "query": "title" | |
| }, | |
| "size": { | |
| "query": "title", | |
| "regex": "Size\\s([\\d\\.]+\\s(?:GB|MB))" | |
| }, | |
| "sl": { | |
| "seeders": { | |
| "query": "title", | |
| "regex": "Seeders\\s(\\d+)" | |
| }, | |
| "leechers": "" | |
| } | |
| } | |
| }, | |
| { | |
| "name": "Torrentio Movies", | |
| "version": 1, | |
| "about": "Integración con Torrentio (Stremio) para películas desde varios proveedores.\n", | |
| "website": "https://torrentio.strem.fun", | |
| "tags": [ | |
| { | |
| "name": "Reliable", | |
| "color": "34c759" | |
| }, | |
| { | |
| "name": "Movies" | |
| } | |
| ], | |
| "jsonParser": { | |
| "searchUrl": "/providers=mejortorrent,wolfmax4k|sort=size|qualityfilter=other,scr,cam,unknown/stream/movie/{query}.json", | |
| "results": "streams", | |
| "magnetHash": { | |
| "query": "infoHash" | |
| }, | |
| "magnetLink": { | |
| "template": "magnet:?xt=urn:btih:{infoHash}" | |
| }, | |
| "title": { | |
| "query": "title" | |
| }, | |
| "size": { | |
| "query": "title", | |
| "regex": "Size\\s([\\d\\.]+\\s(?:GB|MB))" | |
| }, | |
| "sl": { | |
| "seeders": { | |
| "query": "title", | |
| "regex": "Seeders\\s(\\d+)" | |
| }, | |
| "leechers": "" | |
| } | |
| } | |
| } | |
| ], | |
| "actions": [ | |
| { | |
| "name": "Open in qBittorrent", | |
| "version": 1, | |
| "about": "Envía el torrent a qBittorrent mediante su API.\n", | |
| "requires": [ | |
| "magnet" | |
| ], | |
| "method": "POST", | |
| "request": { | |
| "url": "http://localhost:8080/api/v2/torrents/add", | |
| "headers": { | |
| "Content-Type": "application/x-www-form-urlencoded" | |
| }, | |
| "body": "urls={link}" | |
| } | |
| } | |
| ] | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Plugins HK | |
| author: hkfuertes | |
| sources: | |
| - name: Torrentio Series | |
| version: 1 | |
| minVersion: '0.7.2' | |
| about: > | |
| Integración con Torrentio (Stremio) para series desde varios proveedores. | |
| website: https://torrentio.strem.fun | |
| tags: | |
| - name: Reliable | |
| color: 34c759 | |
| - name: TV | |
| jsonParser: | |
| searchUrl: '/providers=mejortorrent,wolfmax4k|sort=size|qualityfilter=other,scr,cam,unknown/stream/series/{query}.json' | |
| results: streams | |
| magnetHash: | |
| query: infoHash | |
| magnetLink: | |
| template: 'magnet:?xt=urn:btih:{infoHash}' | |
| title: | |
| query: title | |
| size: | |
| query: title | |
| regex: 'Size\s([\d\.]+\s(?:GB|MB))' | |
| sl: | |
| seeders: | |
| query: title | |
| regex: 'Seeders\s(\d+)' | |
| leechers: '' | |
| - name: Torrentio Movies | |
| version: 1 | |
| minVersion: '0.7.2' | |
| about: > | |
| Integración con Torrentio (Stremio) para películas desde varios proveedores. | |
| website: https://torrentio.strem.fun | |
| tags: | |
| - name: Reliable | |
| color: 34c759 | |
| - name: Movies | |
| jsonParser: | |
| searchUrl: '/providers=mejortorrent,wolfmax4k|sort=size|qualityfilter=other,scr,cam,unknown/stream/movie/{query}.json' | |
| results: streams | |
| magnetHash: | |
| query: infoHash | |
| magnetLink: | |
| template: 'magnet:?xt=urn:btih:{infoHash}' | |
| title: | |
| query: title | |
| size: | |
| query: title | |
| regex: 'Size\s([\d\.]+\s(?:GB|MB))' | |
| sl: | |
| seeders: | |
| query: title | |
| regex: 'Seeders\s(\d+)' | |
| leechers: '' | |
| actions: | |
| - name: Open in qBittorrent | |
| version: 1 | |
| about: > | |
| Envía el torrent a qBittorrent mediante su API. | |
| requires: | |
| - magnet | |
| method: POST | |
| request: | |
| url: 'http://localhost:8080/api/v2/torrents/add' | |
| headers: | |
| Content-Type: 'application/x-www-form-urlencoded' | |
| body: 'urls={link}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment