Discogs Diggr

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

什麼是Discogs Diggr?

Discogs Diggr是由sebastian.kovats開發的Chrome擴展程式,該擴展的主要功能是“shows videos next to the releases on a store's page”。

擴展截圖

screenshot

下載Discogs Diggr擴展crx文件

下載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
官方網址 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"
        }
    ]
}