Discogs Diggr

shows videos next to the releases on a store's page

Что такое Discogs Diggr?

Discogs Diggr - это расширение Chrome, разработанное sebastian.kovats, и его основная функция - "shows videos next to the releases on a store's page".

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

screenshot

Скачать файл CRX расширения Discogs Diggr

Скачайте файлы расширений Discogs Diggr в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This simple Chrome extension makes digging through a Discogs store more convenient by directly placing the YouTube videos that have been linked to a release next to it. Say goodbye to endless back and forth between release and store page!                    

Основная информация о расширении

Название Discogs Diggr Discogs Diggr
ID igmnleelldgamcmifnjenhkegdgfaocc
Официальный URL https://chromewebstore.google.com/detail/discogs-diggr/igmnleelldgamcmifnjenhkegdgfaocc
Описание shows videos next to the releases on a store's page
Размер файла 613 KB
Количество установок 53
Текущая Версия 0.1.1
Последнее Обновление 2024-02-03
Дата публикации 2022-05-10
Разработчик sebastian.kovats
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/seboko/discogs-diggr-chrome
URL страницы помощи https://github.com/seboko/discogs-diggr-chrome
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Discogs Diggr",
    "description": "shows videos next to the releases on a store's page",
    "version": "0.1.1",
    "manifest_version": 3,
    "icons": {
        "128": ".\/assets\/diggr-logo.png"
    },
    "options_page": ".\/src\/html\/options.html",
    "browser_action": {
        "default_popup": ".\/src\/html\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.discogs.com\/*seller\/*\/profile*"
            ],
            "js": [
                ".\/src\/js\/foreground.js"
            ],
            "run_at": "document_idle"
        }
    ]
}