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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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" ] } ] } |