├── .eslintrc ├── .gitignore ├── AnnoyancesInterception.md ├── AnnoyancesInterception.user.js ├── AutoDarkMode.md ├── AutoDarkMode.user.js ├── AutoUnfold.md ├── AutoUnfold.user.js ├── DoubanAssistant.md ├── DoubanAssistant.user.js ├── GptCleaner.user.js ├── JenkinsAssistant.user.js ├── LICENSE ├── LinkManager.md ├── LinkManager.user.js ├── NetdiskAssistant.user.js ├── README.md ├── RemoveSuffix.md └── RemoveSuffix.user.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirBashX/UserScript/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Changelog* 2 | WebSite* -------------------------------------------------------------------------------- /AnnoyancesInterception.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirBashX/UserScript/HEAD/AnnoyancesInterception.md -------------------------------------------------------------------------------- /AnnoyancesInterception.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirBashX/UserScript/HEAD/AnnoyancesInterception.user.js -------------------------------------------------------------------------------- /AutoDarkMode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirBashX/UserScript/HEAD/AutoDarkMode.md -------------------------------------------------------------------------------- /AutoDarkMode.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirBashX/UserScript/HEAD/AutoDarkMode.user.js -------------------------------------------------------------------------------- /AutoUnfold.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirBashX/UserScript/HEAD/AutoUnfold.md -------------------------------------------------------------------------------- /AutoUnfold.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirBashX/UserScript/HEAD/AutoUnfold.user.js -------------------------------------------------------------------------------- /DoubanAssistant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirBashX/UserScript/HEAD/DoubanAssistant.md -------------------------------------------------------------------------------- /DoubanAssistant.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirBashX/UserScript/HEAD/DoubanAssistant.user.js -------------------------------------------------------------------------------- /GptCleaner.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirBashX/UserScript/HEAD/GptCleaner.user.js -------------------------------------------------------------------------------- /JenkinsAssistant.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirBashX/UserScript/HEAD/JenkinsAssistant.user.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirBashX/UserScript/HEAD/LICENSE -------------------------------------------------------------------------------- /LinkManager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirBashX/UserScript/HEAD/LinkManager.md -------------------------------------------------------------------------------- /LinkManager.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirBashX/UserScript/HEAD/LinkManager.user.js -------------------------------------------------------------------------------- /NetdiskAssistant.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirBashX/UserScript/HEAD/NetdiskAssistant.user.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirBashX/UserScript/HEAD/README.md -------------------------------------------------------------------------------- /RemoveSuffix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirBashX/UserScript/HEAD/RemoveSuffix.md -------------------------------------------------------------------------------- /RemoveSuffix.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AirBashX/UserScript/HEAD/RemoveSuffix.user.js --------------------------------------------------------------------------------