├── .gitignore ├── LICENSE.md ├── README.md ├── atc.gif ├── bot ├── .babelrc ├── .editorconfig ├── .eslintrc.js ├── .flowconfig ├── manifest.json ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── actions │ │ │ ├── atc.js │ │ │ ├── drawer.js │ │ │ ├── menu.js │ │ │ ├── notification.js │ │ │ └── profiles.js │ │ ├── components │ │ │ ├── FileInput.jsx │ │ │ ├── NotificationBar.jsx │ │ │ ├── Profile.jsx │ │ │ ├── ProfileCreateForm.jsx │ │ │ ├── ProfileExportForm.jsx │ │ │ ├── ProfileImportForm.jsx │ │ │ ├── ProfileToggle.jsx │ │ │ └── shops │ │ │ │ └── supreme │ │ │ │ ├── AtcCreateForm.jsx │ │ │ │ ├── Configuration.jsx │ │ │ │ ├── LocalChangeSelect.jsx │ │ │ │ ├── ProductList.jsx │ │ │ │ └── pages │ │ │ │ ├── Atc.jsx │ │ │ │ ├── Billing.jsx │ │ │ │ ├── DropProducts.jsx │ │ │ │ ├── Drops.jsx │ │ │ │ ├── Options.jsx │ │ │ │ ├── Products.jsx │ │ │ │ ├── Restocks.jsx │ │ │ │ └── Sizes.jsx │ │ ├── constants │ │ │ ├── ActionTypes.js │ │ │ ├── Menus.js │ │ │ ├── Styles.js │ │ │ └── Utils.js │ │ ├── containers │ │ │ ├── App.jsx │ │ │ ├── AppDrawer.jsx │ │ │ └── Layout.jsx │ │ ├── index.hbs │ │ ├── index.jsx │ │ ├── migrations.js │ │ ├── reducers │ │ │ ├── atc.js │ │ │ ├── drawer.js │ │ │ ├── index.js │ │ │ ├── menu.js │ │ │ ├── notification.js │ │ │ └── profiles.js │ │ ├── routes.jsx │ │ ├── utils │ │ │ ├── FormValidators.js │ │ │ ├── FuzzyStringMatcher.js │ │ │ ├── Helpers.js │ │ │ └── SupremeUtils.js │ │ └── version.js │ ├── assets │ │ ├── css │ │ │ └── main.css │ │ ├── fonts │ │ │ ├── roboto-v15-latin-300.eot │ │ │ ├── roboto-v15-latin-300.svg │ │ │ ├── roboto-v15-latin-300.woff │ │ │ ├── roboto-v15-latin-300.woff2 │ │ │ ├── roboto-v15-latin-500.eot │ │ │ ├── roboto-v15-latin-500.svg │ │ │ ├── roboto-v15-latin-500.woff │ │ │ ├── roboto-v15-latin-500.woff2 │ │ │ ├── roboto-v15-latin-regular.eot │ │ │ ├── roboto-v15-latin-regular.svg │ │ │ ├── roboto-v15-latin-regular.woff │ │ │ └── roboto-v15-latin-regular.woff2 │ │ └── img │ │ │ ├── icon.png │ │ │ ├── icon128.png │ │ │ ├── icon16.png │ │ │ ├── icon32.png │ │ │ └── icon48.png │ ├── extension │ │ ├── background │ │ │ ├── index.js │ │ │ └── supreme │ │ │ │ ├── RestockMonitor.js │ │ │ │ └── index.js │ │ └── content │ │ │ ├── index.js │ │ │ └── supreme │ │ │ ├── SupremeManager.js │ │ │ ├── helpers.js │ │ │ ├── index.js │ │ │ ├── notification.js │ │ │ └── processors │ │ │ ├── atcProcessor.js │ │ │ ├── baseProcessor.js │ │ │ ├── cartProcessor.js │ │ │ ├── checkoutProcessor.js │ │ │ └── productProcessor.js │ ├── preload │ │ └── index.js │ └── services │ │ ├── ChromeService.js │ │ ├── CryptoService.js │ │ ├── KeywordsService.js │ │ ├── StorageService.js │ │ └── supreme │ │ ├── AtcService.js │ │ ├── CheckoutService.js │ │ ├── DropsService.js │ │ ├── ProductsService.js │ │ └── RestocksService.js ├── test │ └── keywordmatcher.test.js ├── webpack.config.js ├── webpack.config.prod.js └── yarn.lock └── screenshot.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/README.md -------------------------------------------------------------------------------- /atc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/atc.gif -------------------------------------------------------------------------------- /bot/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/.babelrc -------------------------------------------------------------------------------- /bot/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/.editorconfig -------------------------------------------------------------------------------- /bot/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/.eslintrc.js -------------------------------------------------------------------------------- /bot/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/.flowconfig -------------------------------------------------------------------------------- /bot/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/manifest.json -------------------------------------------------------------------------------- /bot/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/package-lock.json -------------------------------------------------------------------------------- /bot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/package.json -------------------------------------------------------------------------------- /bot/src/app/actions/atc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/actions/atc.js -------------------------------------------------------------------------------- /bot/src/app/actions/drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/actions/drawer.js -------------------------------------------------------------------------------- /bot/src/app/actions/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/actions/menu.js -------------------------------------------------------------------------------- /bot/src/app/actions/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/actions/notification.js -------------------------------------------------------------------------------- /bot/src/app/actions/profiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/actions/profiles.js -------------------------------------------------------------------------------- /bot/src/app/components/FileInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/components/FileInput.jsx -------------------------------------------------------------------------------- /bot/src/app/components/NotificationBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/components/NotificationBar.jsx -------------------------------------------------------------------------------- /bot/src/app/components/Profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/components/Profile.jsx -------------------------------------------------------------------------------- /bot/src/app/components/ProfileCreateForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/components/ProfileCreateForm.jsx -------------------------------------------------------------------------------- /bot/src/app/components/ProfileExportForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/components/ProfileExportForm.jsx -------------------------------------------------------------------------------- /bot/src/app/components/ProfileImportForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/components/ProfileImportForm.jsx -------------------------------------------------------------------------------- /bot/src/app/components/ProfileToggle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/components/ProfileToggle.jsx -------------------------------------------------------------------------------- /bot/src/app/components/shops/supreme/AtcCreateForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/components/shops/supreme/AtcCreateForm.jsx -------------------------------------------------------------------------------- /bot/src/app/components/shops/supreme/Configuration.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/components/shops/supreme/Configuration.jsx -------------------------------------------------------------------------------- /bot/src/app/components/shops/supreme/LocalChangeSelect.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/components/shops/supreme/LocalChangeSelect.jsx -------------------------------------------------------------------------------- /bot/src/app/components/shops/supreme/ProductList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/components/shops/supreme/ProductList.jsx -------------------------------------------------------------------------------- /bot/src/app/components/shops/supreme/pages/Atc.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/components/shops/supreme/pages/Atc.jsx -------------------------------------------------------------------------------- /bot/src/app/components/shops/supreme/pages/Billing.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/components/shops/supreme/pages/Billing.jsx -------------------------------------------------------------------------------- /bot/src/app/components/shops/supreme/pages/DropProducts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/components/shops/supreme/pages/DropProducts.jsx -------------------------------------------------------------------------------- /bot/src/app/components/shops/supreme/pages/Drops.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/components/shops/supreme/pages/Drops.jsx -------------------------------------------------------------------------------- /bot/src/app/components/shops/supreme/pages/Options.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/components/shops/supreme/pages/Options.jsx -------------------------------------------------------------------------------- /bot/src/app/components/shops/supreme/pages/Products.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/components/shops/supreme/pages/Products.jsx -------------------------------------------------------------------------------- /bot/src/app/components/shops/supreme/pages/Restocks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/components/shops/supreme/pages/Restocks.jsx -------------------------------------------------------------------------------- /bot/src/app/components/shops/supreme/pages/Sizes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/components/shops/supreme/pages/Sizes.jsx -------------------------------------------------------------------------------- /bot/src/app/constants/ActionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/constants/ActionTypes.js -------------------------------------------------------------------------------- /bot/src/app/constants/Menus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/constants/Menus.js -------------------------------------------------------------------------------- /bot/src/app/constants/Styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/constants/Styles.js -------------------------------------------------------------------------------- /bot/src/app/constants/Utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/constants/Utils.js -------------------------------------------------------------------------------- /bot/src/app/containers/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/containers/App.jsx -------------------------------------------------------------------------------- /bot/src/app/containers/AppDrawer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/containers/AppDrawer.jsx -------------------------------------------------------------------------------- /bot/src/app/containers/Layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/containers/Layout.jsx -------------------------------------------------------------------------------- /bot/src/app/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/index.hbs -------------------------------------------------------------------------------- /bot/src/app/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/index.jsx -------------------------------------------------------------------------------- /bot/src/app/migrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/migrations.js -------------------------------------------------------------------------------- /bot/src/app/reducers/atc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/reducers/atc.js -------------------------------------------------------------------------------- /bot/src/app/reducers/drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/reducers/drawer.js -------------------------------------------------------------------------------- /bot/src/app/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/reducers/index.js -------------------------------------------------------------------------------- /bot/src/app/reducers/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/reducers/menu.js -------------------------------------------------------------------------------- /bot/src/app/reducers/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/reducers/notification.js -------------------------------------------------------------------------------- /bot/src/app/reducers/profiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/reducers/profiles.js -------------------------------------------------------------------------------- /bot/src/app/routes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/routes.jsx -------------------------------------------------------------------------------- /bot/src/app/utils/FormValidators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/utils/FormValidators.js -------------------------------------------------------------------------------- /bot/src/app/utils/FuzzyStringMatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/utils/FuzzyStringMatcher.js -------------------------------------------------------------------------------- /bot/src/app/utils/Helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/utils/Helpers.js -------------------------------------------------------------------------------- /bot/src/app/utils/SupremeUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/app/utils/SupremeUtils.js -------------------------------------------------------------------------------- /bot/src/app/version.js: -------------------------------------------------------------------------------- 1 | export default '2.10.1'; 2 | -------------------------------------------------------------------------------- /bot/src/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/assets/css/main.css -------------------------------------------------------------------------------- /bot/src/assets/fonts/roboto-v15-latin-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/assets/fonts/roboto-v15-latin-300.eot -------------------------------------------------------------------------------- /bot/src/assets/fonts/roboto-v15-latin-300.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/assets/fonts/roboto-v15-latin-300.svg -------------------------------------------------------------------------------- /bot/src/assets/fonts/roboto-v15-latin-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/assets/fonts/roboto-v15-latin-300.woff -------------------------------------------------------------------------------- /bot/src/assets/fonts/roboto-v15-latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/assets/fonts/roboto-v15-latin-300.woff2 -------------------------------------------------------------------------------- /bot/src/assets/fonts/roboto-v15-latin-500.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/assets/fonts/roboto-v15-latin-500.eot -------------------------------------------------------------------------------- /bot/src/assets/fonts/roboto-v15-latin-500.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/assets/fonts/roboto-v15-latin-500.svg -------------------------------------------------------------------------------- /bot/src/assets/fonts/roboto-v15-latin-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/assets/fonts/roboto-v15-latin-500.woff -------------------------------------------------------------------------------- /bot/src/assets/fonts/roboto-v15-latin-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/assets/fonts/roboto-v15-latin-500.woff2 -------------------------------------------------------------------------------- /bot/src/assets/fonts/roboto-v15-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/assets/fonts/roboto-v15-latin-regular.eot -------------------------------------------------------------------------------- /bot/src/assets/fonts/roboto-v15-latin-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/assets/fonts/roboto-v15-latin-regular.svg -------------------------------------------------------------------------------- /bot/src/assets/fonts/roboto-v15-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/assets/fonts/roboto-v15-latin-regular.woff -------------------------------------------------------------------------------- /bot/src/assets/fonts/roboto-v15-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/assets/fonts/roboto-v15-latin-regular.woff2 -------------------------------------------------------------------------------- /bot/src/assets/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/assets/img/icon.png -------------------------------------------------------------------------------- /bot/src/assets/img/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/assets/img/icon128.png -------------------------------------------------------------------------------- /bot/src/assets/img/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/assets/img/icon16.png -------------------------------------------------------------------------------- /bot/src/assets/img/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/assets/img/icon32.png -------------------------------------------------------------------------------- /bot/src/assets/img/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/assets/img/icon48.png -------------------------------------------------------------------------------- /bot/src/extension/background/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/extension/background/index.js -------------------------------------------------------------------------------- /bot/src/extension/background/supreme/RestockMonitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/extension/background/supreme/RestockMonitor.js -------------------------------------------------------------------------------- /bot/src/extension/background/supreme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/extension/background/supreme/index.js -------------------------------------------------------------------------------- /bot/src/extension/content/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/extension/content/index.js -------------------------------------------------------------------------------- /bot/src/extension/content/supreme/SupremeManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/extension/content/supreme/SupremeManager.js -------------------------------------------------------------------------------- /bot/src/extension/content/supreme/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/extension/content/supreme/helpers.js -------------------------------------------------------------------------------- /bot/src/extension/content/supreme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/extension/content/supreme/index.js -------------------------------------------------------------------------------- /bot/src/extension/content/supreme/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/extension/content/supreme/notification.js -------------------------------------------------------------------------------- /bot/src/extension/content/supreme/processors/atcProcessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/extension/content/supreme/processors/atcProcessor.js -------------------------------------------------------------------------------- /bot/src/extension/content/supreme/processors/baseProcessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/extension/content/supreme/processors/baseProcessor.js -------------------------------------------------------------------------------- /bot/src/extension/content/supreme/processors/cartProcessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/extension/content/supreme/processors/cartProcessor.js -------------------------------------------------------------------------------- /bot/src/extension/content/supreme/processors/checkoutProcessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/extension/content/supreme/processors/checkoutProcessor.js -------------------------------------------------------------------------------- /bot/src/extension/content/supreme/processors/productProcessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/extension/content/supreme/processors/productProcessor.js -------------------------------------------------------------------------------- /bot/src/preload/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/preload/index.js -------------------------------------------------------------------------------- /bot/src/services/ChromeService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/services/ChromeService.js -------------------------------------------------------------------------------- /bot/src/services/CryptoService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/services/CryptoService.js -------------------------------------------------------------------------------- /bot/src/services/KeywordsService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/services/KeywordsService.js -------------------------------------------------------------------------------- /bot/src/services/StorageService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/services/StorageService.js -------------------------------------------------------------------------------- /bot/src/services/supreme/AtcService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/services/supreme/AtcService.js -------------------------------------------------------------------------------- /bot/src/services/supreme/CheckoutService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/services/supreme/CheckoutService.js -------------------------------------------------------------------------------- /bot/src/services/supreme/DropsService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/services/supreme/DropsService.js -------------------------------------------------------------------------------- /bot/src/services/supreme/ProductsService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/services/supreme/ProductsService.js -------------------------------------------------------------------------------- /bot/src/services/supreme/RestocksService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/src/services/supreme/RestocksService.js -------------------------------------------------------------------------------- /bot/test/keywordmatcher.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/test/keywordmatcher.test.js -------------------------------------------------------------------------------- /bot/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/webpack.config.js -------------------------------------------------------------------------------- /bot/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/webpack.config.prod.js -------------------------------------------------------------------------------- /bot/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/bot/yarn.lock -------------------------------------------------------------------------------- /screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YungVDev/Supreme-Auto-Checkout/HEAD/screenshot.jpg --------------------------------------------------------------------------------