RevROI

RevROI

A light & powerful tool to increase your ROI while doing online arbitrage sourcing or personal online shopping.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "RevROI",
  "short_name": "RevROI",
  "version": "2.9",
  "manifest_version": 3,
  "description": "A light & powerful tool to increase your ROI while doing online arbitrage sourcing or personal online shopping.",
  "icons": {
    "128": "icons/128.png",
    "256": "icons/256.png"
  },
  "action": {
    "default_icon": "icons/128_gray.png",
    "default_title": "RevROI",
    "default_popup": "src/browser_action/browser_action.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.cashbackmonitor.com/go-to/*?asingadget=true"
      ],
      "js": [
        "js/cashback.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "storage",
    "activeTab",
    "identity",
    "identity.email",
    "contextMenus",
    "scripting",
    "tabs"
  ],
  "host_permissions": [
    "https://www.cashbackmonitor.com/*",
    "https://www.cardbear.com/*",
    "*://revroi.oaroulette.com/*",
    "https://app.oaroulette.com/asingadget/*",
    "https://api.mixpanel.com/track"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "src/browser_action/browser_action.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}