├── .browserslistrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .husky └── pre-push ├── .npmrc ├── LICENSE ├── README.md ├── babel.config.js ├── jsconfig.json ├── package.json ├── rollup.conf.js ├── sites.json └── src ├── XFetch.js ├── clientUtils.js ├── globalSettingsManager.js ├── index.js ├── meta.js ├── profileManager.js ├── settings.js ├── style.module.css ├── trackerUtils.js └── types ├── css.d.ts └── index.d.ts /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/SendToClient/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/SendToClient/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /* 2 | !/src 3 | !/test 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/SendToClient/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/SendToClient/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/SendToClient/HEAD/.husky/pre-push -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | shamefully-hoist = true 2 | strict-peer-dependencies = false 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/SendToClient/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/SendToClient/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/SendToClient/HEAD/babel.config.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/SendToClient/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/SendToClient/HEAD/package.json -------------------------------------------------------------------------------- /rollup.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/SendToClient/HEAD/rollup.conf.js -------------------------------------------------------------------------------- /sites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/SendToClient/HEAD/sites.json -------------------------------------------------------------------------------- /src/XFetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/SendToClient/HEAD/src/XFetch.js -------------------------------------------------------------------------------- /src/clientUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/SendToClient/HEAD/src/clientUtils.js -------------------------------------------------------------------------------- /src/globalSettingsManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/SendToClient/HEAD/src/globalSettingsManager.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/SendToClient/HEAD/src/index.js -------------------------------------------------------------------------------- /src/meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/SendToClient/HEAD/src/meta.js -------------------------------------------------------------------------------- /src/profileManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/SendToClient/HEAD/src/profileManager.js -------------------------------------------------------------------------------- /src/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/SendToClient/HEAD/src/settings.js -------------------------------------------------------------------------------- /src/style.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/SendToClient/HEAD/src/style.module.css -------------------------------------------------------------------------------- /src/trackerUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/SendToClient/HEAD/src/trackerUtils.js -------------------------------------------------------------------------------- /src/types/css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/SendToClient/HEAD/src/types/css.d.ts -------------------------------------------------------------------------------- /src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notmarek/SendToClient/HEAD/src/types/index.d.ts --------------------------------------------------------------------------------