├── .gitignore ├── .prettierrc ├── CHANGELOG.md ├── README.md ├── amazonGiveawayBot.meta.js ├── amazonGiveawayBot.user.js ├── images ├── botScreenshot.png ├── giveawayBotHeader.svg ├── giveawayBotLogoBlue.png └── winnings.png ├── package.json ├── src ├── index.js └── util │ ├── account.js │ ├── address.js │ ├── captcha.js │ ├── giveaway.js │ ├── logger.js │ ├── styles.js │ ├── uiTemplate.js │ ├── unfollow.js │ └── win.js └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .DS_Store 3 | node_modules 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tygooch/amazon-giveaway-bot/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tygooch/amazon-giveaway-bot/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tygooch/amazon-giveaway-bot/HEAD/README.md -------------------------------------------------------------------------------- /amazonGiveawayBot.meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tygooch/amazon-giveaway-bot/HEAD/amazonGiveawayBot.meta.js -------------------------------------------------------------------------------- /amazonGiveawayBot.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tygooch/amazon-giveaway-bot/HEAD/amazonGiveawayBot.user.js -------------------------------------------------------------------------------- /images/botScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tygooch/amazon-giveaway-bot/HEAD/images/botScreenshot.png -------------------------------------------------------------------------------- /images/giveawayBotHeader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tygooch/amazon-giveaway-bot/HEAD/images/giveawayBotHeader.svg -------------------------------------------------------------------------------- /images/giveawayBotLogoBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tygooch/amazon-giveaway-bot/HEAD/images/giveawayBotLogoBlue.png -------------------------------------------------------------------------------- /images/winnings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tygooch/amazon-giveaway-bot/HEAD/images/winnings.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tygooch/amazon-giveaway-bot/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tygooch/amazon-giveaway-bot/HEAD/src/index.js -------------------------------------------------------------------------------- /src/util/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tygooch/amazon-giveaway-bot/HEAD/src/util/account.js -------------------------------------------------------------------------------- /src/util/address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tygooch/amazon-giveaway-bot/HEAD/src/util/address.js -------------------------------------------------------------------------------- /src/util/captcha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tygooch/amazon-giveaway-bot/HEAD/src/util/captcha.js -------------------------------------------------------------------------------- /src/util/giveaway.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tygooch/amazon-giveaway-bot/HEAD/src/util/giveaway.js -------------------------------------------------------------------------------- /src/util/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tygooch/amazon-giveaway-bot/HEAD/src/util/logger.js -------------------------------------------------------------------------------- /src/util/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tygooch/amazon-giveaway-bot/HEAD/src/util/styles.js -------------------------------------------------------------------------------- /src/util/uiTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tygooch/amazon-giveaway-bot/HEAD/src/util/uiTemplate.js -------------------------------------------------------------------------------- /src/util/unfollow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tygooch/amazon-giveaway-bot/HEAD/src/util/unfollow.js -------------------------------------------------------------------------------- /src/util/win.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tygooch/amazon-giveaway-bot/HEAD/src/util/win.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tygooch/amazon-giveaway-bot/HEAD/webpack.config.js --------------------------------------------------------------------------------