GitHub Musical Score Extension
GitHub で MusicXML を画像で表示する拡張機能
What is GitHub Musical Score Extension?
GitHub Musical Score Extension is a Chrome extension developed by uttne, and its main feature is "GitHub で MusicXML を画像で表示する拡張機能".
Extension Screenshots
Download GitHub Musical Score Extension Extension CRX File
Download GitHub Musical Score Extension 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
GitHub に push した MusicXML を画像で表示することができる拡張機能です。 MuseScore などで作成した楽譜を GitHub で管理したいけれど、XML で表示されて不便という方にお勧めです。
Extension Basic Information
Name | GitHub Musical Score Extension |
ID | bkkbicciaifjlkkjojdpkncmohlfokeh |
Official URL | https://chromewebstore.google.com/detail/github-musical-score-exte/bkkbicciaifjlkkjojdpkncmohlfokeh |
Description | GitHub で MusicXML を画像で表示する拡張機能 |
File Size | 1.79 MB |
Installation Count | 287 |
Current Version | 0.2.1 |
Last Updated | 2022-04-18 |
Publish Date | 2022-04-04 |
Developer | uttne |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/uttne/github-musical-score-extension |
Supported Languages | 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\/*" ] } ] } |