MyBonus - Autobäring

MyBonus - Autobäring

Pengar tillbaka på alla dina köp - helt automatiskt.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "short_name": "__MSG_appNameShort__",
  "version": "0.11.3",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "static/icons/icon-green-16.png",
    "128": "static/icons/icon-green-128.png"
  },
  "default_locale": "sv",
  "background": {
    "scripts": [
      "scripts/background/index.js"
    ]
  },
  "permissions": [
    "webNavigation",
    "tabs",
    "storage",
    "management",
    "http://*/*",
    "https://*/*"
  ],
  "options_ui": {
    "page": "views/options/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/content/index.js"
      ],
      "css": [
        "views/content/index.css"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": {
      "19": "static/icons/icon-green-19.png",
      "38": "static/icons/icon-green-38.png"
    },
    "default_popup": "views/popup/loading/index.html"
  },
  "content_security_policy": "script-src 'self' https://www.google-analytics.com https://connect.facebook.net; object-src 'self'",
  "web_accessible_resources": [
    "static/**/*"
  ]
}