trackerboxd
Adds torrent search shortcuts to Letterboxd
Cos'è trackerboxd?
trackerboxd è un'estensione di Chrome sviluppata da bozo22, e la sua funzione principale è "Adds torrent search shortcuts to Letterboxd".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione trackerboxd
Scarica i file di estensione trackerboxd in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Before using, go to the extension settings and select the trackers you want to use. By default, no options are selected. This extension is open source. Feel free to contribute! https://github.com/bozo22/trackerboxd
Informazioni di Base sull'Estensione
Nome | trackerboxd |
ID | jclinmfmhfdebkgfjojegbcnnhdfpfed |
URL Ufficiale | https://chromewebstore.google.com/detail/trackerboxd/jclinmfmhfdebkgfjojegbcnnhdfpfed |
Descrizione | Adds torrent search shortcuts to Letterboxd |
Dimensione del File | 110 KB |
Conteggio Installazioni | 179 |
Versione Corrente | 1.5.5 |
Ultimo Aggiornamento | 2023-12-04 |
Data di Pubblicazione | 2021-06-12 |
Valutazione | 3.75/5 Totale 4 Valutazioni |
Sviluppatore | bozo22 |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "trackerboxd", "version": "1.5.5", "description": "Adds torrent search shortcuts to Letterboxd", "icons": { "128": "icon.png", "512": "icon512.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.letterboxd.com\/film\/*" ], "js": [ "trackerboxd.js" ] } ], "options_ui": { "page": "options.html" }, "permissions": [ "storage", "*:\/\/*.letterboxd.com\/*" ], "browser_action": { "default_icon": "icon.png", "default_title": "trackerboxd", "default_popup": "options.html" }, "browser_specific_settings": { "gecko": { "id": "{df85b502-bef7-45a0-a9b3-dbcc57927a3d}" } }, "web_accessible_resources": [ "trackers.json" ] } |