EvoShare

EvoShare

With EvoShare, you can receive cash-back from daily expenses towards your retirement or student loan account.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "EvoShare",
  "description": "With EvoShare, you can receive cash-back from daily expenses towards your retirement or student loan account.",
  "version": "4.4.3",
  "manifest_version": 2,
  "icons": {
    "1": "images/favicon.png",
    "2": "images/es_lgn.png",
    "4": "images/favicongreen.png",
    "8": "images/faviconred.png",
    "16": "images/es16.png",
    "48": "images/es48.png",
    "128": "images/es128.png"
  },
  "browser_action": {
    "default_title": "EvoShare",
    "default_icon": "images/favicon.png",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.google.com/*"
      ],
      "css": [
        "css/popupBg.css"
      ],
      "js": [
        "background.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "activeTab",
    "*://*/*",
    "<all_urls>",
    "webRequest",
    "https://*.evoshare.com/*",
    "https://evoshare.com/*"
  ],
  "web_accessible_resources": [
    "css/*",
    "images/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "author": "Volodya <[email protected]>"
}