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 |
官方網址 | 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 |
電子郵箱 | [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" } } |