AddUp | Credit Card Rewards + Online Shopping

AddUp | Credit Card Rewards + Online Shopping

AddUp makes it easy to maximize your credit card rewards while shopping online

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "AddUp",
  "name": "AddUp | Credit Card Rewards + Online Shopping",
  "author": "AddUp Rewards LLC",
  "version": "2.10.114",
  "description": "AddUp makes it easy to maximize your credit card rewards while shopping online",
  "icons": {
    "16": "Icons/icon-16.png",
    "48": "Icons/icon-48.png",
    "128": "Icons/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "./static/js/content.js"
      ],
      "all_frames": false,
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icon-128.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "notifications",
    "cookies"
  ],
  "host_permissions": [
    "https://api.adduprewards.com/"
  ],
  "manifest_version": 3,
  "background": {
    "service_worker": "./background.js"
  },
  "action": {
    "default_popup": "./index.html",
    "default_title": "View your credit card reward details"
  }
}