Bandcamp History
Track your history in bandcamp as you track it on soundcloud
Was ist Bandcamp History?
Bandcamp History ist eine Chrome-Erweiterung, die von https://walidvb.com entwickelt wurde, und ihr Hauptmerkmal ist "Track your history in bandcamp as you track it on soundcloud".
Erweiterungsscreenshots
Bandcamp History-Erweiterungs-CRX-Datei herunterladen
Laden Sie Bandcamp History-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Bandcamp History |
ID | idihngmfkbcpglaihodahdapnaacggeh |
Offizielle URL | https://chromewebstore.google.com/detail/bandcamp-history/idihngmfkbcpglaihodahdapnaacggeh |
Beschreibung | Track your history in bandcamp as you track it on soundcloud |
Dateigröße | 43.64 KB |
Installationsanzahl | 113 |
Aktuelle Version | 0.0.1 |
Letztes Update | 2021-04-08 |
Veröffentlichungsdatum | 2021-04-03 |
Entwickler | https://walidvb.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | http://walidvb.com |
Hilfeseite URL | http://github.com/walidvb/bandcamp-history |
Unterstützte Sprachen | 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" ] } ] } |