SweepsAlert by OnlineMom

Sweepstake alerts that matter to you.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SweepsAlert by OnlineMom",
  "description": "Sweepstake alerts that matter to you.",
  "manifest_version": 2,
  "version": "1.1",
  "browser_action": {
    "default_title": "SweepsAlert by OnlineMom",
    "default_popup": "./dist/popup.html",
    "default_icon": {
      "16": "dist/images/icon16.png",
      "48": "dist/images/icon48.png",
      "64": "dist/images/icon64.png",
      "128": "dist/images/icon128.png"
    }
  },
  "background": {
    "scripts": [
      "dist/js/jquery-3.5.1.min.js",
      "dist/config.dist.js",
      "dist/js/script.js",
      "dist/background.dist.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "dist/js/jquery-3.5.1.min.js",
        "dist/js/notify.min.js",
        "dist/js/script.js",
        "dist/config.dist.js",
        "dist/content.dist.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    "dist/tailwind.dist.css",
    "dist/styles.css"
  ],
  "permissions": [
    "tabs",
    "activeTab",
    "declarativeContent",
    "storage",
    "webNavigation",
    "*://*/*"
  ]
}