├── .gitattributes ├── LICENSE ├── README.md ├── ZzFX.js ├── ZzFXMicro.js ├── ZzFXMicro.min.js ├── icon.png ├── index.html ├── manifest.json ├── package.json ├── screenshot.png └── wav.js /.gitattributes: -------------------------------------------------------------------------------- 1 | *.html linguist-language=Javascript 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KilledByAPixel/ZzFX/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KilledByAPixel/ZzFX/HEAD/README.md -------------------------------------------------------------------------------- /ZzFX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KilledByAPixel/ZzFX/HEAD/ZzFX.js -------------------------------------------------------------------------------- /ZzFXMicro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KilledByAPixel/ZzFX/HEAD/ZzFXMicro.js -------------------------------------------------------------------------------- /ZzFXMicro.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KilledByAPixel/ZzFX/HEAD/ZzFXMicro.min.js -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KilledByAPixel/ZzFX/HEAD/icon.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KilledByAPixel/ZzFX/HEAD/index.html -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KilledByAPixel/ZzFX/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KilledByAPixel/ZzFX/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KilledByAPixel/ZzFX/HEAD/screenshot.png -------------------------------------------------------------------------------- /wav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KilledByAPixel/ZzFX/HEAD/wav.js --------------------------------------------------------------------------------