├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── dist ├── download-git-userscript.meta.js └── download-git-userscript.user.js ├── eslintrc.json ├── package.json ├── screenshot.png ├── src ├── index.ts └── utils.ts ├── tsconfig.json ├── webpack.config.js └── yarn.lock /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe/download-git-userscript/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | download-git-userscript.proxy.user.js 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe/download-git-userscript/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe/download-git-userscript/HEAD/README.md -------------------------------------------------------------------------------- /dist/download-git-userscript.meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe/download-git-userscript/HEAD/dist/download-git-userscript.meta.js -------------------------------------------------------------------------------- /dist/download-git-userscript.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe/download-git-userscript/HEAD/dist/download-git-userscript.user.js -------------------------------------------------------------------------------- /eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe/download-git-userscript/HEAD/eslintrc.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe/download-git-userscript/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe/download-git-userscript/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe/download-git-userscript/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe/download-git-userscript/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe/download-git-userscript/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe/download-git-userscript/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe/download-git-userscript/HEAD/yarn.lock --------------------------------------------------------------------------------