mixcloud-copy2clipboard
Allows to copy current track name to clipboard
What is mixcloud-copy2clipboard?
mixcloud-copy2clipboard is a Chrome extension developed by troytft, and its main feature is "Allows to copy current track name to clipboard".
Extension Screenshots
Download mixcloud-copy2clipboard Extension CRX File
Download mixcloud-copy2clipboard extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Chrome extension for mixcloud.com, allows you to copy current track name to clipboard by click. Source https://github.com/troytft/mixcloud-copy2clipboard
Extension Basic Information
Name | |
ID | mghjpbenegghiedeckghcbiinlgmpjfh |
Official URL | https://chrome.google.com/webstore/detail/mixcloud-copy2clipboard/mghjpbenegghiedeckghcbiinlgmpjfh |
Description | Allows to copy current track name to clipboard |
File Size | 23.54 KB |
Installation Count | 80 |
Current Version | 1.0.0 |
Last Updated | 2019-12-25 |
Publish Date | 2019-12-25 |
Rating | 5.00/5 Total 1 Ratings |
Developer | troytft |
Payment Type | free |
Supported Languages | 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\/*" ] } ] } |