├── .editorconfig ├── .github └── workflows │ └── release-version.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── cover.png ├── manifest.json ├── package.json ├── screenshots ├── cover-dark-1.png ├── cover-dark-2.png ├── cover-dark-3.png ├── cover-light-1.png ├── font-image.png ├── mobile-1.png ├── mobile-2.png ├── stylesettings.png ├── win-theme-folder.png └── zhifubao.jpg ├── theme.css ├── version-bump.mjs ├── versions.json └── weread.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laughmaker/Zen/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/release-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laughmaker/Zen/HEAD/.github/workflows/release-version.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laughmaker/Zen/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laughmaker/Zen/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laughmaker/Zen/HEAD/README.md -------------------------------------------------------------------------------- /cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laughmaker/Zen/HEAD/cover.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laughmaker/Zen/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laughmaker/Zen/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/cover-dark-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laughmaker/Zen/HEAD/screenshots/cover-dark-1.png -------------------------------------------------------------------------------- /screenshots/cover-dark-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laughmaker/Zen/HEAD/screenshots/cover-dark-2.png -------------------------------------------------------------------------------- /screenshots/cover-dark-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laughmaker/Zen/HEAD/screenshots/cover-dark-3.png -------------------------------------------------------------------------------- /screenshots/cover-light-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laughmaker/Zen/HEAD/screenshots/cover-light-1.png -------------------------------------------------------------------------------- /screenshots/font-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laughmaker/Zen/HEAD/screenshots/font-image.png -------------------------------------------------------------------------------- /screenshots/mobile-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laughmaker/Zen/HEAD/screenshots/mobile-1.png -------------------------------------------------------------------------------- /screenshots/mobile-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laughmaker/Zen/HEAD/screenshots/mobile-2.png -------------------------------------------------------------------------------- /screenshots/stylesettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laughmaker/Zen/HEAD/screenshots/stylesettings.png -------------------------------------------------------------------------------- /screenshots/win-theme-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laughmaker/Zen/HEAD/screenshots/win-theme-folder.png -------------------------------------------------------------------------------- /screenshots/zhifubao.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laughmaker/Zen/HEAD/screenshots/zhifubao.jpg -------------------------------------------------------------------------------- /theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laughmaker/Zen/HEAD/theme.css -------------------------------------------------------------------------------- /version-bump.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laughmaker/Zen/HEAD/version-bump.mjs -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laughmaker/Zen/HEAD/versions.json -------------------------------------------------------------------------------- /weread.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laughmaker/Zen/HEAD/weread.md --------------------------------------------------------------------------------