├── .gitattributes ├── .gitignore ├── manifest.json ├── volume-plus ├── .gitattributes ├── .gitignore ├── .prettierrc ├── README.md ├── dist │ └── volume-plus.js ├── package-lock.json ├── package.json ├── preview.png ├── src │ ├── app.tsx │ ├── assets │ │ ├── config.css │ │ └── icon.svg │ ├── settings.json │ ├── types │ │ ├── css-modules.d.ts │ │ └── spicetify.d.ts │ └── utils.tsx └── tsconfig.json └── where-now-playing ├── .gitattributes ├── .gitignore ├── .prettierrc ├── README.md ├── dist └── where-now-playing.js ├── package-lock.json ├── package.json ├── src ├── app.tsx ├── settings.json ├── types │ ├── css-modules.d.ts │ └── spicetify.d.ts └── utils.tsx └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aspecky/spicetify-extensions/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aspecky/spicetify-extensions/HEAD/manifest.json -------------------------------------------------------------------------------- /volume-plus/.gitattributes: -------------------------------------------------------------------------------- 1 | dist/* linguist-vendored -------------------------------------------------------------------------------- /volume-plus/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aspecky/spicetify-extensions/HEAD/volume-plus/.gitignore -------------------------------------------------------------------------------- /volume-plus/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aspecky/spicetify-extensions/HEAD/volume-plus/.prettierrc -------------------------------------------------------------------------------- /volume-plus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aspecky/spicetify-extensions/HEAD/volume-plus/README.md -------------------------------------------------------------------------------- /volume-plus/dist/volume-plus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aspecky/spicetify-extensions/HEAD/volume-plus/dist/volume-plus.js -------------------------------------------------------------------------------- /volume-plus/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aspecky/spicetify-extensions/HEAD/volume-plus/package-lock.json -------------------------------------------------------------------------------- /volume-plus/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aspecky/spicetify-extensions/HEAD/volume-plus/package.json -------------------------------------------------------------------------------- /volume-plus/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aspecky/spicetify-extensions/HEAD/volume-plus/preview.png -------------------------------------------------------------------------------- /volume-plus/src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aspecky/spicetify-extensions/HEAD/volume-plus/src/app.tsx -------------------------------------------------------------------------------- /volume-plus/src/assets/config.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aspecky/spicetify-extensions/HEAD/volume-plus/src/assets/config.css -------------------------------------------------------------------------------- /volume-plus/src/assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aspecky/spicetify-extensions/HEAD/volume-plus/src/assets/icon.svg -------------------------------------------------------------------------------- /volume-plus/src/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "nameId": "volume-plus" 3 | } -------------------------------------------------------------------------------- /volume-plus/src/types/css-modules.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aspecky/spicetify-extensions/HEAD/volume-plus/src/types/css-modules.d.ts -------------------------------------------------------------------------------- /volume-plus/src/types/spicetify.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aspecky/spicetify-extensions/HEAD/volume-plus/src/types/spicetify.d.ts -------------------------------------------------------------------------------- /volume-plus/src/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aspecky/spicetify-extensions/HEAD/volume-plus/src/utils.tsx -------------------------------------------------------------------------------- /volume-plus/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aspecky/spicetify-extensions/HEAD/volume-plus/tsconfig.json -------------------------------------------------------------------------------- /where-now-playing/.gitattributes: -------------------------------------------------------------------------------- 1 | dist/* linguist-vendored -------------------------------------------------------------------------------- /where-now-playing/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aspecky/spicetify-extensions/HEAD/where-now-playing/.gitignore -------------------------------------------------------------------------------- /where-now-playing/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aspecky/spicetify-extensions/HEAD/where-now-playing/.prettierrc -------------------------------------------------------------------------------- /where-now-playing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aspecky/spicetify-extensions/HEAD/where-now-playing/README.md -------------------------------------------------------------------------------- /where-now-playing/dist/where-now-playing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aspecky/spicetify-extensions/HEAD/where-now-playing/dist/where-now-playing.js -------------------------------------------------------------------------------- /where-now-playing/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aspecky/spicetify-extensions/HEAD/where-now-playing/package-lock.json -------------------------------------------------------------------------------- /where-now-playing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aspecky/spicetify-extensions/HEAD/where-now-playing/package.json -------------------------------------------------------------------------------- /where-now-playing/src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aspecky/spicetify-extensions/HEAD/where-now-playing/src/app.tsx -------------------------------------------------------------------------------- /where-now-playing/src/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "nameId": "where-now-playing" 3 | } -------------------------------------------------------------------------------- /where-now-playing/src/types/css-modules.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aspecky/spicetify-extensions/HEAD/where-now-playing/src/types/css-modules.d.ts -------------------------------------------------------------------------------- /where-now-playing/src/types/spicetify.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aspecky/spicetify-extensions/HEAD/where-now-playing/src/types/spicetify.d.ts -------------------------------------------------------------------------------- /where-now-playing/src/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aspecky/spicetify-extensions/HEAD/where-now-playing/src/utils.tsx -------------------------------------------------------------------------------- /where-now-playing/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aspecky/spicetify-extensions/HEAD/where-now-playing/tsconfig.json --------------------------------------------------------------------------------