mixcloud-copy2clipboard

Allows to copy current track name to clipboard

Qu'est-ce que mixcloud-copy2clipboard ?

mixcloud-copy2clipboard est une extension Chrome développée par troytft, et sa fonction principale est "Allows to copy current track name to clipboard".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension mixcloud-copy2clipboard

Téléchargez les fichiers d'extension mixcloud-copy2clipboard 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

                        Chrome extension for mixcloud.com, allows you to copy current track name to clipboard by click. Source https://github.com/troytft/mixcloud-copy2clipboard                    

Informations de Base sur l'Extension

Nom mixcloud-copy2clipboard mixcloud-copy2clipboard
ID mghjpbenegghiedeckghcbiinlgmpjfh
URL Officiel https://chrome.google.com/webstore/detail/mixcloud-copy2clipboard/mghjpbenegghiedeckghcbiinlgmpjfh
Description Allows to copy current track name to clipboard
Taille du Fichier 23.54 KB
Nombre d'Installations 80
Version Actuelle 1.0.0
Dernière Mise à Jour 2019-12-25
Date de Publication 2019-12-25
Évaluation 5.00/5 Total 1 Évaluations
Développeur troytft
Type de Paiement free
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "mixcloud-copy2clipboard",
    "version": "1.0.0",
    "description": "Allows to copy current track name to clipboard",
    "manifest_version": 2,
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "js": [
                "background.js"
            ],
            "matches": [
                "https:\/\/mixcloud.com\/*",
                "https:\/\/www.mixcloud.com\/*"
            ]
        }
    ]
}