Bandcamp History
Track your history in bandcamp as you track it on soundcloud
Cos'è Bandcamp History?
Bandcamp History è un'estensione di Chrome sviluppata da https://walidvb.com, e la sua funzione principale è "Track your history in bandcamp as you track it on soundcloud".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Bandcamp History
Scarica i file di estensione Bandcamp History in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Bandcamp History |
ID | idihngmfkbcpglaihodahdapnaacggeh |
URL Ufficiale | https://chromewebstore.google.com/detail/bandcamp-history/idihngmfkbcpglaihodahdapnaacggeh |
Descrizione | Track your history in bandcamp as you track it on soundcloud |
Dimensione del File | 43.64 KB |
Conteggio Installazioni | 113 |
Versione Corrente | 0.0.1 |
Ultimo Aggiornamento | 2021-04-08 |
Data di Pubblicazione | 2021-04-03 |
Sviluppatore | https://walidvb.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://walidvb.com |
URL della Pagina di Aiuto | http://github.com/walidvb/bandcamp-history |
Lingue Supportate | 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" ] } ] } |