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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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 |
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" } ] } |