Examine source code of AwardWallet

Inspect and view changes in AwardWallet source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "AwardWallet",
  "author": "AwardWallet LLC",
  "version": "2.37",
  "description": "AwardWallet Browser Helper",
  "homepage_url": "https://awardwallet.com/",
  "icons": {
    "16": "icons/icon16.png",
    "44": "icons/icon44.png",
    "48": "icons/icon48.png",
    "50": "icons/icon50.png",
    "128": "icons/icon128.png",
    "150": "icons/icon150.png",
    "180": "icons/icon180.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.awardwallet.com/*"
      ],
      "js": [
        "src/content.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "permissions": [
    "webRequest",
    "https://awardwallet.com/*",
    "http://*/*",
    "https://*/*",
    "tabs"
  ],
  "externally_connectable": {
    "matches": [
      "https://*.awardwallet.com/*"
    ]
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}