Amazon Giveaway Bot

Amazon Giveaway Bot

Automated Amazon Giveaway entries. Win free stuff with Amazon Giveaway Bot.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Amazon Giveaway Bot",
  "version": "4.0.0",
  "description": "Automated Amazon Giveaway entries. Win free stuff with Amazon Giveaway Bot.",
  "icons": {
    "16": "/images/[email protected]",
    "32": "/images/[email protected]",
    "48": "/images/[email protected]",
    "128": "/images/[email protected]"
  },
  "author": "Ty Gooch <[email protected]>",
  "permissions": [
    "storage",
    "notifications",
    "activeTab",
    "https://www.amazon.com/*"
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "https://www.amazon.com/giveaway/"
      ],
      "js": [
        "amazonGiveawayBot.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "importStorage.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "amazonGiveawayBot.js"
  ]
}