Musicianify

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

什么是Musicianify?

Musicianify是由demikaiser13开发的Chrome扩展程序,该扩展的主要功能是“A Chrome extension that helps you to be an awesome musician!”。

扩展截图

screenshot
screenshot

下载Musicianify扩展crx文件

下载Musicianify扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Musicianify Musicianify
ID millhogpkdjaijnohcneabakkbjlbnjf
官方URL https://chrome.google.com/webstore/detail/musicianify/millhogpkdjaijnohcneabakkbjlbnjf
简介 A Chrome extension that helps you to be an awesome musician!
文件大小 2.64 MB
安装次数 76
当前版本 0.0.1
更新时间 2020-05-05
上架时间 2020-05-04
开发者 demikaiser13
付费类型 free
支持的语言 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"
    ]
}