ROI & ROAS Calculator

ROI & ROAS Calculator

ROI & ROAS Calculator is a FREE chrome calculator, to help you easily calculate ROI & ROAS metrics.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "default_locale": "en_US",
  "icons": {
    "128": "icons/128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "__MSG_extName__",
    "default_icon": {
      "128": "icons/128.png"
    }
  },
  "content_scripts": [
    {
      "js": [
        "js/content.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "exclude_matches": [],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com ; object-src 'self'",
  "web_accessible_resources": [
    "js/*.js"
  ],
  "permissions": [
    "storage",
    "cookies",
    "<all_urls>",
    "background",
    "webRequest",
    "webRequestBlocking"
  ],
  "version": "1.1.1"
}