Debrid Media Manager
Add accessible DMM buttons to IMDB and MDBList pages
Qu'est-ce que Debrid Media Manager ?
Debrid Media Manager est une extension Chrome développée par yowmamasita, et sa fonction principale est "Add accessible DMM buttons to IMDB and MDBList pages".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Debrid Media Manager
Téléchargez les fichiers d'extension Debrid Media Manager au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Debrid Media Manager |
ID | fahmnboccjgkbeeianfdiohbbgmgoibb |
URL Officiel | https://chromewebstore.google.com/detail/debrid-media-manager/fahmnboccjgkbeeianfdiohbbgmgoibb |
Description | Add accessible DMM buttons to IMDB and MDBList pages |
Taille du Fichier | 11.93 KB |
Nombre d'Installations | 1,180 |
Version Actuelle | 1.1.3 |
Dernière Mise à Jour | 2023-11-15 |
Date de Publication | 2023-11-08 |
Évaluation | 5.00/5 Total 4 Évaluations |
Développeur | yowmamasita |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://debridmediamanager.com/ |
Langues Prises en Charge | 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" } } |