Mark-E Cash-Tool

Nutzen Sie unser Cash-Tool um beim Online-Shopping direkt in Ihren Lieblings-Shops von der Vorteilswelt zu profitieren und kein Cashback mehr zu verpassen.
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": "Mark-E Cashback-Radar",
  "author": "MEHRWERK GmbH",
  "version": "1.2",
  "short_name": "Mark-E",
  "description": "Cashback-Radar für die Mark-E Vorteilswelt",
  "developer": {
    "name": "MEHRWERK GmbH",
    "url": "https://www.mehrwerk.de"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "homepage_url": "https://vorteilswelt.mark-e.de",
  "icons": {
    "48": "images/icon.png",
    "96": "images/[email protected]"
  },
  "browser_action": {
    "browser_style": true,
    "default_popup": "menu/menu.html",
    "default_icon": {
      "48": "images/icon.png",
      "96": "images/[email protected]",
      "128": "images/[email protected]"
    },
    "default_title": "Mark-E Cashback-Radar"
  },
  "permissions": [
    "activeTab",
    "storage",
    "http://*/*",
    "https://*/*",
    "webRequestBlocking",
    "*://meta.tamola.de/*",
    "webRequest"
  ],
  "web_accessible_resources": [
    "images/*.png",
    "images/*.svg"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "lib/jquery.min.js",
        "pagescript.js"
      ],
      "css": [
        "pagestyle.css"
      ],
      "run_at": "document_end"
    }
  ]
}