├── .babelrc ├── .eslintrc.js ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .prettierrc.js ├── .release-it.yml ├── README.md ├── chrome ├── bump-version.sh ├── icons │ ├── icon128.png │ ├── icon16.png │ └── icon48.png └── manifest.json ├── package.json ├── src ├── automations │ ├── Anonymous.js │ ├── HideUnanswered.js │ ├── Instagram.js │ ├── Messenger.js │ └── Swiper.js ├── index.js ├── misc │ ├── Interactions.js │ ├── api.js │ ├── bg.js │ ├── helper.js │ └── insert-css.js └── views │ ├── Sidebar.js │ └── templates.js ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/tinder-autopilot/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/tinder-autopilot/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [Lunars] 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/tinder-autopilot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/tinder-autopilot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/tinder-autopilot/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/tinder-autopilot/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.release-it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/tinder-autopilot/HEAD/.release-it.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/tinder-autopilot/HEAD/README.md -------------------------------------------------------------------------------- /chrome/bump-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/tinder-autopilot/HEAD/chrome/bump-version.sh -------------------------------------------------------------------------------- /chrome/icons/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/tinder-autopilot/HEAD/chrome/icons/icon128.png -------------------------------------------------------------------------------- /chrome/icons/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/tinder-autopilot/HEAD/chrome/icons/icon16.png -------------------------------------------------------------------------------- /chrome/icons/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/tinder-autopilot/HEAD/chrome/icons/icon48.png -------------------------------------------------------------------------------- /chrome/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/tinder-autopilot/HEAD/chrome/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/tinder-autopilot/HEAD/package.json -------------------------------------------------------------------------------- /src/automations/Anonymous.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/tinder-autopilot/HEAD/src/automations/Anonymous.js -------------------------------------------------------------------------------- /src/automations/HideUnanswered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/tinder-autopilot/HEAD/src/automations/HideUnanswered.js -------------------------------------------------------------------------------- /src/automations/Instagram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/tinder-autopilot/HEAD/src/automations/Instagram.js -------------------------------------------------------------------------------- /src/automations/Messenger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/tinder-autopilot/HEAD/src/automations/Messenger.js -------------------------------------------------------------------------------- /src/automations/Swiper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/tinder-autopilot/HEAD/src/automations/Swiper.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/tinder-autopilot/HEAD/src/index.js -------------------------------------------------------------------------------- /src/misc/Interactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/tinder-autopilot/HEAD/src/misc/Interactions.js -------------------------------------------------------------------------------- /src/misc/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/tinder-autopilot/HEAD/src/misc/api.js -------------------------------------------------------------------------------- /src/misc/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/tinder-autopilot/HEAD/src/misc/bg.js -------------------------------------------------------------------------------- /src/misc/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/tinder-autopilot/HEAD/src/misc/helper.js -------------------------------------------------------------------------------- /src/misc/insert-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/tinder-autopilot/HEAD/src/misc/insert-css.js -------------------------------------------------------------------------------- /src/views/Sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/tinder-autopilot/HEAD/src/views/Sidebar.js -------------------------------------------------------------------------------- /src/views/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/tinder-autopilot/HEAD/src/views/templates.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/tinder-autopilot/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geczy/tinder-autopilot/HEAD/yarn.lock --------------------------------------------------------------------------------