├── .gitignore ├── README.MD ├── StashUserscriptLibrary.js ├── StashUserscriptLibrary.yml ├── images ├── 1.png └── 2.png ├── themeSwitch.yml ├── themeSwitchCSS.js ├── themeSwitchMain.js └── themeSwtichDefault.css /.gitignore: -------------------------------------------------------------------------------- 1 | **/.temp -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkorol/Stash-App-Theme-Switch-Plugin/HEAD/README.MD -------------------------------------------------------------------------------- /StashUserscriptLibrary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkorol/Stash-App-Theme-Switch-Plugin/HEAD/StashUserscriptLibrary.js -------------------------------------------------------------------------------- /StashUserscriptLibrary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkorol/Stash-App-Theme-Switch-Plugin/HEAD/StashUserscriptLibrary.yml -------------------------------------------------------------------------------- /images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkorol/Stash-App-Theme-Switch-Plugin/HEAD/images/1.png -------------------------------------------------------------------------------- /images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkorol/Stash-App-Theme-Switch-Plugin/HEAD/images/2.png -------------------------------------------------------------------------------- /themeSwitch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkorol/Stash-App-Theme-Switch-Plugin/HEAD/themeSwitch.yml -------------------------------------------------------------------------------- /themeSwitchCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkorol/Stash-App-Theme-Switch-Plugin/HEAD/themeSwitchCSS.js -------------------------------------------------------------------------------- /themeSwitchMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkorol/Stash-App-Theme-Switch-Plugin/HEAD/themeSwitchMain.js -------------------------------------------------------------------------------- /themeSwtichDefault.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elkorol/Stash-App-Theme-Switch-Plugin/HEAD/themeSwtichDefault.css --------------------------------------------------------------------------------