├── .gitignore ├── LICENSE.md ├── README.md ├── dist └── .gitkeep ├── icons ├── icon128.png ├── icon16.png └── icon48.png ├── manifest.json ├── package.json ├── src ├── ABC.ts ├── ABCDictionary.ts ├── IME.ts ├── IMECandidate.ts ├── MIDIPlayer.ts ├── ScoresInPage.ts ├── Scrapbox.ts ├── Types.ts └── content.ts ├── style ├── midi.css └── style.css └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSatake/hyperscorebox/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSatake/hyperscorebox/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSatake/hyperscorebox/HEAD/README.md -------------------------------------------------------------------------------- /dist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSatake/hyperscorebox/HEAD/icons/icon128.png -------------------------------------------------------------------------------- /icons/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSatake/hyperscorebox/HEAD/icons/icon16.png -------------------------------------------------------------------------------- /icons/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSatake/hyperscorebox/HEAD/icons/icon48.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSatake/hyperscorebox/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSatake/hyperscorebox/HEAD/package.json -------------------------------------------------------------------------------- /src/ABC.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSatake/hyperscorebox/HEAD/src/ABC.ts -------------------------------------------------------------------------------- /src/ABCDictionary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSatake/hyperscorebox/HEAD/src/ABCDictionary.ts -------------------------------------------------------------------------------- /src/IME.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSatake/hyperscorebox/HEAD/src/IME.ts -------------------------------------------------------------------------------- /src/IMECandidate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSatake/hyperscorebox/HEAD/src/IMECandidate.ts -------------------------------------------------------------------------------- /src/MIDIPlayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSatake/hyperscorebox/HEAD/src/MIDIPlayer.ts -------------------------------------------------------------------------------- /src/ScoresInPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSatake/hyperscorebox/HEAD/src/ScoresInPage.ts -------------------------------------------------------------------------------- /src/Scrapbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSatake/hyperscorebox/HEAD/src/Scrapbox.ts -------------------------------------------------------------------------------- /src/Types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSatake/hyperscorebox/HEAD/src/Types.ts -------------------------------------------------------------------------------- /src/content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSatake/hyperscorebox/HEAD/src/content.ts -------------------------------------------------------------------------------- /style/midi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSatake/hyperscorebox/HEAD/style/midi.css -------------------------------------------------------------------------------- /style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSatake/hyperscorebox/HEAD/style/style.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isSatake/hyperscorebox/HEAD/tsconfig.json --------------------------------------------------------------------------------