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".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл 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 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"
    }
}