mixcloud-copy2clipboard

Allows to copy current track name to clipboard

Wat is mixcloud-copy2clipboard?

mixcloud-copy2clipboard is een Chrome-extensie ontwikkeld door troytft, en de belangrijkste functie is "Allows to copy current track name to clipboard".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie mixcloud-copy2clipboard

Download mixcloud-copy2clipboard-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam mixcloud-copy2clipboard mixcloud-copy2clipboard
ID mghjpbenegghiedeckghcbiinlgmpjfh
Officiële URL https://chrome.google.com/webstore/detail/mixcloud-copy2clipboard/mghjpbenegghiedeckghcbiinlgmpjfh
Beschrijving Allows to copy current track name to clipboard
Bestandsgrootte 23.54 KB
Aantal Installaties 80
Huidige Versie 1.0.0
Laatst Bijgewerkt 2019-12-25
Publicatiedatum 2019-12-25
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar troytft
Betalingswijze free
Ondersteunde Talen 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\/*"
            ]
        }
    ]
}