Debrid Media Manager
Add accessible DMM buttons to IMDB and MDBList pages
Debrid Media Managerคืออะไร?
Debrid Media Manager เป็นส่วนขยายของ Chrome ที่พัฒนาโดย yowmamasita และคุณลักษณะหลักของมันคือ "Add accessible DMM buttons to IMDB and MDBList pages"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Debrid Media Manager
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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" } } |