Musicianify

A Chrome extension that helps you to be an awesome musician!

What is Musicianify?

Musicianify is a Chrome extension developed by demikaiser13, and its main feature is "A Chrome extension that helps you to be an awesome musician!".

Extension Screenshots

screenshot
screenshot

Download Musicianify Extension CRX File

Download Musicianify 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

                        A youtube-attached Chrome extension app that helps you to be a killer musician: It provides an HTML5 video looper manager and a drum machine for repeated and intensive musical exercises.                    

Extension Basic Information

Name Musicianify Musicianify
ID millhogpkdjaijnohcneabakkbjlbnjf
Official URL https://chrome.google.com/webstore/detail/musicianify/millhogpkdjaijnohcneabakkbjlbnjf
Description A Chrome extension that helps you to be an awesome musician!
File Size 2.64 MB
Installation Count 76
Current Version 0.0.1
Last Updated 2020-05-05
Publish Date 2020-05-04
Developer demikaiser13
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs"
    ],
    "name": "Musicianify",
    "version": "0.0.1",
    "description": "A Chrome extension that helps you to be an awesome musician!",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "style.css",
                "venders\/uikit-isolated.css"
            ],
            "js": [
                "venders\/Tone.js",
                "venders\/jquery-3.4.1.min.js",
                "venders\/uikit.js",
                "venders\/uikit-icons.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Musicianify",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/cdn.jsdelivr.net; object-src 'self'",
    "web_accessible_resources": [
        "content.html",
        "style.css",
        "components\/looper.html",
        "components\/metronome.html",
        "venders\/uikit-isolated.css",
        "venders\/Tone.js",
        "venders\/jquery-3.4.1.min.js",
        "venders\/uikit.js",
        "venders\/uikit-icons.js",
        "assets\/sounds\/acoustic\/*.wav",
        "assets\/sounds\/metronome\/*.wav",
        "assets\/demos\/*.json"
    ]
}