GitHub Musical Score Extension

GitHub で MusicXML を画像で表示する拡張機能

GitHub Musical Score Extension란 무엇입니까?

GitHub Musical Score Extension은(는) uttne에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "GitHub で MusicXML を画像で表示する拡張機能"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

GitHub Musical Score Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        GitHub に push した MusicXML を画像で表示することができる拡張機能です。
MuseScore などで作成した楽譜を GitHub で管理したいけれど、XML で表示されて不便という方にお勧めです。                    

확장 프로그램 기본 정보

이름 GitHub Musical Score Extension GitHub Musical Score Extension
ID bkkbicciaifjlkkjojdpkncmohlfokeh
공식 URL https://chromewebstore.google.com/detail/github-musical-score-exte/bkkbicciaifjlkkjojdpkncmohlfokeh
설명 GitHub で MusicXML を画像で表示する拡張機能
파일 크기 1.79 MB
설치 횟수 287
현재 버전 0.2.1
최근 업데이트 2022-04-18
출시 날짜 2022-04-04
개발자 uttne
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/uttne/github-musical-score-extension
지원되는 언어 ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Musical Score Extension",
    "description": "GitHub \u3067 MusicXML \u3092\u753b\u50cf\u3067\u8868\u793a\u3059\u308b\u62e1\u5f35\u6a5f\u80fd",
    "version": "0.2.1",
    "manifest_version": 3,
    "permissions": [],
    "host_permissions": [
        "https:\/\/github.com\/"
    ],
    "icons": {
        "16": "\/icons\/icon16.png",
        "32": "\/icons\/icon32.png",
        "48": "\/icons\/icon48.png",
        "128": "\/icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "githubPage.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "src\/*"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ]
        }
    ]
}