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".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Discogs Diggr
قم بتنزيل ملفات الامتداد Discogs Diggr بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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 |
عنوان صفحة المساعدة | 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" } ] } |