Twitter Lottery Widget (x.com)

Twitter Lottery Widget (x.com)

Winners will be drawn from replies, retweets, likes on Twitter (x.com) tweets.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "version": "1.0",
  "description": "__MSG_extNameDesc__",
  "action": {},
  "options_ui": {
    "page": "opt/option.html",
    "open_in_tab": true
  },
  "background": {
    "service_worker": "scripts/background.js"
  },
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "*://*.x.com/*",
        "*://*.twitter.com/*"
      ],
      "js": [
        "scripts/content.js"
      ]
    }
  ],
  "default_locale": "en"
}