├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── assets ├── hornify-16x9.png ├── hornify-1x1.png └── porn-tags.json ├── dist └── hornify.js ├── manifest.json ├── package.json ├── src ├── app.tsx ├── settings.json └── types │ └── spicetify.d.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetTechuila/Hornify/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | dist/* linguist-vendored -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | package-lock.json 3 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetTechuila/Hornify/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetTechuila/Hornify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetTechuila/Hornify/HEAD/README.md -------------------------------------------------------------------------------- /assets/hornify-16x9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetTechuila/Hornify/HEAD/assets/hornify-16x9.png -------------------------------------------------------------------------------- /assets/hornify-1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetTechuila/Hornify/HEAD/assets/hornify-1x1.png -------------------------------------------------------------------------------- /assets/porn-tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetTechuila/Hornify/HEAD/assets/porn-tags.json -------------------------------------------------------------------------------- /dist/hornify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetTechuila/Hornify/HEAD/dist/hornify.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetTechuila/Hornify/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetTechuila/Hornify/HEAD/package.json -------------------------------------------------------------------------------- /src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetTechuila/Hornify/HEAD/src/app.tsx -------------------------------------------------------------------------------- /src/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "nameId": "hornify" 3 | } -------------------------------------------------------------------------------- /src/types/spicetify.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetTechuila/Hornify/HEAD/src/types/spicetify.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunsetTechuila/Hornify/HEAD/tsconfig.json --------------------------------------------------------------------------------