Debrid Media Manager
Add accessible DMM buttons to IMDB and MDBList pages
Debrid Media Managerとは何ですか?
Debrid Media Managerはyowmamasitaによって開発されたChromeの拡張機能で、その主な機能は「Add accessible DMM buttons to IMDB and MDBList pages」です。
拡張機能のスクリーンショット
Debrid Media Manager拡張機能のCRXファイルをダウンロード
Debrid Media Manager拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Debrid Media Manager |
ID | fahmnboccjgkbeeianfdiohbbgmgoibb |
公式URL | https://chromewebstore.google.com/detail/debrid-media-manager/fahmnboccjgkbeeianfdiohbbgmgoibb |
説明 | Add accessible DMM buttons to IMDB and MDBList pages |
ファイルサイズ | 11.93 KB |
インストール数 | 1,180 |
現在のバージョン | 1.1.3 |
最終更新日 | 2023-11-15 |
公開日 | 2023-11-08 |
評価 | 5.00/5 合計 4 レビュー |
開発者 | yowmamasita |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://debridmediamanager.com/ |
対応言語 | 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" } } |