Bandcamp History
Track your history in bandcamp as you track it on soundcloud
Bandcamp Historyคืออะไร?
Bandcamp History เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://walidvb.com และคุณลักษณะหลักของมันคือ "Track your history in bandcamp as you track it on soundcloud"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bandcamp History
ดาวน์โหลดไฟล์ส่วนขยาย Bandcamp History ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Add a history tab to your user profile to keep track of the releases you visited. PS: everything is stored on your machine, not a single request is made to any third-party services
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Bandcamp History |
ID | idihngmfkbcpglaihodahdapnaacggeh |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/bandcamp-history/idihngmfkbcpglaihodahdapnaacggeh |
คำอธิบาย | Track your history in bandcamp as you track it on soundcloud |
ขนาดไฟล์ | 43.64 KB |
จำนวนการติดตั้ง | 113 |
เวอร์ชันปัจจุบัน | 0.0.1 |
อัปเดตครั้งล่าสุด | 2021-04-08 |
วันที่เผยแพร่ | 2021-04-03 |
ผู้พัฒนา | https://walidvb.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://walidvb.com |
URL หน้าช่วยเหลือ | http://github.com/walidvb/bandcamp-history |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bandcamp History", "version": "0.0.1", "manifest_version": 2, "description": "Track your history in bandcamp as you track it on soundcloud", "homepage_url": "http:\/\/walidvb.com", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "page": "src\/bg\/background.html", "persistent": false }, "options_page": "src\/options\/index.html", "permissions": [ "history", "storage", "*:\/\/*\/" ], "commands": { "Ctrl+J": { "suggested_key": { "default": "Ctrl+J", "mac": "Command+J" }, "description": "Ctrl+J." } }, "content_scripts": [ { "matches": [ "https:\/\/bandcamp.com\/*", "https:\/\/*.bandcamp.com\/*", "*:\/\/*\/*" ], "css": [ "src\/inject\/inject.css" ] }, { "matches": [ "https:\/\/bandcamp.com\/*", "https:\/\/*.bandcamp.com\/*", "*:\/\/*\/*" ], "js": [ "src\/inject\/inject.js" ] } ] } |