Gleam.io bot

Gleam.io bot

Automated gleam.io giveaway entering.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Gleam.io bot",
  "version": "3.5",
  "description": "Automated gleam.io giveaway entering.",
  "permissions": [
    "https://twitter.com/intent/*?*&gleambot=true",
    "https://gleam.io/*"
  ],
  "content_security_policy": "script-src 'self' 'sha256-aBELGxg9K38bfzNXsGdpzc/M+/ueSBjYd9xpdB+EzNM=' 'wasm-eval' js.gleam.io widget.gleamjs.io; object-src 'self'",
  "icons": {
    "48": "icons/48.png",
    "72": "icons/72.png",
    "96": "icons/96.png",
    "144": "icons/144.png",
    "192": "icons/192.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://gleam.io/*"
      ],
      "all_frames": true,
      "js": [
        "inject_module.js"
      ]
    },
    {
      "matches": [
        "https://twitter.com/intent/follow?*&gleambot=true"
      ],
      "js": [
        "twitter/follow.js"
      ]
    },
    {
      "matches": [
        "https://twitter.com/intent/retweet?*&gleambot=true"
      ],
      "js": [
        "twitter/retweet.js"
      ]
    },
    {
      "matches": [
        "https://twitter.com/intent/tweet?*&gleambot=true"
      ],
      "js": [
        "twitter/tweet.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "gleam_extension.js",
    "run_wasm.js",
    "gleam_extension_bg.wasm"
  ],
  "browser_action": {
    "browser_style": true,
    "default_title": "Browse gleam.io giveways"
  },
  "manifest_version": 2
}