Bandcamp History

Track your history in bandcamp as you track it on soundcloud

Qu'est-ce que Bandcamp History ?

Bandcamp History est une extension Chrome développée par https://walidvb.com, et sa fonction principale est "Track your history in bandcamp as you track it on soundcloud".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Bandcamp History

Téléchargez les fichiers d'extension Bandcamp History au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Bandcamp History Bandcamp History
ID idihngmfkbcpglaihodahdapnaacggeh
URL Officiel https://chromewebstore.google.com/detail/bandcamp-history/idihngmfkbcpglaihodahdapnaacggeh
Description Track your history in bandcamp as you track it on soundcloud
Taille du Fichier 43.64 KB
Nombre d'Installations 113
Version Actuelle 0.0.1
Dernière Mise à Jour 2021-04-08
Date de Publication 2021-04-03
Développeur https://walidvb.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://walidvb.com
URL de la Page d'Aide http://github.com/walidvb/bandcamp-history
Langues Prises en Charge 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"
            ]
        }
    ]
}