├── .eslintrc.json ├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── add-website.md │ ├── broken-website.md │ ├── bug.md │ ├── feature-request.md │ └── update-website.md ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── data ├── rules.js ├── supported-sites.txt └── tidy.user.js ├── lib ├── config.d.ts ├── config.js ├── handlers.d.ts ├── handlers.js ├── index.d.ts ├── index.js ├── interface.d.ts ├── interface.js ├── tidyurl.min.js ├── utils.d.ts └── utils.js ├── package.json ├── src ├── config.ts ├── handlers.ts ├── index.ts ├── interface.ts ├── postbuild.ts └── utils.ts ├── test.ts ├── text-logo.png ├── tsconfig.json └── webpack.config.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/add-website.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/.github/ISSUE_TEMPLATE/add-website.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/broken-website.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/.github/ISSUE_TEMPLATE/broken-website.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/update-website.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/.github/ISSUE_TEMPLATE/update-website.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | data/rules.js -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/README.md -------------------------------------------------------------------------------- /data/rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/data/rules.js -------------------------------------------------------------------------------- /data/supported-sites.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/data/supported-sites.txt -------------------------------------------------------------------------------- /data/tidy.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/data/tidy.user.js -------------------------------------------------------------------------------- /lib/config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/lib/config.d.ts -------------------------------------------------------------------------------- /lib/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/lib/config.js -------------------------------------------------------------------------------- /lib/handlers.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/lib/handlers.d.ts -------------------------------------------------------------------------------- /lib/handlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/lib/handlers.js -------------------------------------------------------------------------------- /lib/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/lib/index.d.ts -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/interface.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/lib/interface.d.ts -------------------------------------------------------------------------------- /lib/interface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/lib/interface.js -------------------------------------------------------------------------------- /lib/tidyurl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/lib/tidyurl.min.js -------------------------------------------------------------------------------- /lib/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/lib/utils.d.ts -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/lib/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/package.json -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/src/handlers.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/src/interface.ts -------------------------------------------------------------------------------- /src/postbuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/src/postbuild.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/src/utils.ts -------------------------------------------------------------------------------- /test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/test.ts -------------------------------------------------------------------------------- /text-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/text-logo.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrKain/tidy-url/HEAD/webpack.config.js --------------------------------------------------------------------------------