Cashback service Paidwork

Get cashback for shopping online with Paidwork!
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": "Cashback service Paidwork",
  "version": "1.3",
  "default_locale": "en_US",
  "description": "Get cashback for shopping online with Paidwork!",
  "manifest_version": 3,
  "author": "paidwork",
  "icons": {
    "100": "img/icon100.png",
    "128": "img/icon128x128.png"
  },
  "action": {
    "default_title": "Cashback extension",
    "default_popup": "cashback-extension.html",
    "default_icon": "img/icon100.png"
  },
  "background": {
    "service_worker": "scripts/background.js"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "scripting",
    "unlimitedStorage",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "css": [
        "css/popup.css",
        "css/box.css"
      ],
      "js": [
        "scripts/box-click.js"
      ],
      "exclude_globs": [
        "https//www.google.com/*",
        "*google.com*",
        "*youtube*"
      ],
      "run_at": "document_start"
    }
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*",
    "<all_urls>",
    "https://mobile.paidwork.com/"
  ]
}