Debrid Media Manager
Add accessible DMM buttons to IMDB and MDBList pages
Cos'è Debrid Media Manager?
Debrid Media Manager è un'estensione di Chrome sviluppata da yowmamasita, e la sua funzione principale è "Add accessible DMM buttons to IMDB and MDBList pages".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Debrid Media Manager
Scarica i file di estensione Debrid Media Manager 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
Debrid Media Manager allows you to curate a media library with truly unlimited size. This browser extension will make it easier for curators to add new items in their libraries. Just do a Google search for the movie or TV show you want to add and usually an IMDB link shows up in the results. With MDBList, it allows you to define criteria for movies or shows, e.g. IMDB score > 8.0 or movies that are from Germany. Experience this seamless way of discovering and watching new content.
Informazioni di Base sull'Estensione
Nome | Debrid Media Manager |
ID | fahmnboccjgkbeeianfdiohbbgmgoibb |
URL Ufficiale | https://chromewebstore.google.com/detail/debrid-media-manager/fahmnboccjgkbeeianfdiohbbgmgoibb |
Descrizione | Add accessible DMM buttons to IMDB and MDBList pages |
Dimensione del File | 11.93 KB |
Conteggio Installazioni | 1,180 |
Versione Corrente | 1.1.3 |
Ultimo Aggiornamento | 2023-11-15 |
Data di Pubblicazione | 2023-11-08 |
Valutazione | 5.00/5 Totale 4 Valutazioni |
Sviluppatore | yowmamasita |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://debridmediamanager.com/ |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Debrid Media Manager", "version": "1.1.3", "description": "Add accessible DMM buttons to IMDB and MDBList pages", "permissions": [], "host_permissions": [ "https:\/\/www.imdb.com\/*", "https:\/\/mdblist.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.imdb.com\/*", "https:\/\/mdblist.com\/*" ], "js": [ "content_script.js" ] } ], "action": { "default_icon": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_title": "Open Debrid Media Manager" }, "background": { "service_worker": "background.js" }, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } } |