├── .gitignore ├── README.md ├── declarations └── lib.oss.d.ts ├── jsconfig.json ├── package.json ├── repository.json ├── repository_generator.js ├── sources ├── 17k.com.js ├── example.com.js ├── fanqienovel.com.js ├── qidian.com.js └── zongheng.com.js ├── src └── script.js └── test ├── default.js └── example.com.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-source-scripts/book-scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-source-scripts/book-scripts/HEAD/README.md -------------------------------------------------------------------------------- /declarations/lib.oss.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-source-scripts/book-scripts/HEAD/declarations/lib.oss.d.ts -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-source-scripts/book-scripts/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-source-scripts/book-scripts/HEAD/package.json -------------------------------------------------------------------------------- /repository.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-source-scripts/book-scripts/HEAD/repository.json -------------------------------------------------------------------------------- /repository_generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-source-scripts/book-scripts/HEAD/repository_generator.js -------------------------------------------------------------------------------- /sources/17k.com.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-source-scripts/book-scripts/HEAD/sources/17k.com.js -------------------------------------------------------------------------------- /sources/example.com.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-source-scripts/book-scripts/HEAD/sources/example.com.js -------------------------------------------------------------------------------- /sources/fanqienovel.com.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-source-scripts/book-scripts/HEAD/sources/fanqienovel.com.js -------------------------------------------------------------------------------- /sources/qidian.com.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-source-scripts/book-scripts/HEAD/sources/qidian.com.js -------------------------------------------------------------------------------- /sources/zongheng.com.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-source-scripts/book-scripts/HEAD/sources/zongheng.com.js -------------------------------------------------------------------------------- /src/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-source-scripts/book-scripts/HEAD/src/script.js -------------------------------------------------------------------------------- /test/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-source-scripts/book-scripts/HEAD/test/default.js -------------------------------------------------------------------------------- /test/example.com.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-source-scripts/book-scripts/HEAD/test/example.com.js --------------------------------------------------------------------------------