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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}