Lumaly

Lumaly

Jetzt mit Lumaly Geld sparen.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_app_name__",
  "description": "__MSG_app_description__",
  "default_locale": "de",
  "version": "3.0.1.5",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "webRequest",
    "storage",
    "unlimitedStorage",
    "tabs"
  ],
  "web_accessible_resources": [
    "static/*"
  ],
  "icons": {
    "16": "static/images/logo.png",
    "48": "static/images/logo.png",
    "128": "static/images/logo.png"
  },
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "browser_action": {
    "default_popup": "static/app.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "*://lumaly.de/*",
        "*://*.awin.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{05de56b2-0367-4d10-95a8-32bc59b12b5e}"
    }
  }
}