Gamestop Eintauschlistenpreise

Gamestop Eintauschlistenpreise

Extension welche Preise bei amazon für die Gamestop Eintauschliste sucht.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Gamestop Eintauschlistenpreise",
  "description": "Extension welche Preise bei amazon für die Gamestop Eintauschliste sucht.",
  "version": "1.5",
  "permissions": [
    "tabs",
    "notifications",
    "storage",
    "http://*.amazon.de/",
    "http://*.amazon.at/",
    "http://*.amazon.ch/",
    "https://*.amazon.de/",
    "https://*.amazon.at/",
    "https://*.amazon.ch/",
    "http://*.gamestop.de/",
    "http://*.gamestop.ch/",
    "http://*.gamestop.at/",
    "https://*.gamestop.de/",
    "https://*.gamestop.ch/",
    "https://*.gamestop.at/",
    "https://api.gamestop-eintauschliste.de/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*.gamestop.de/eintauschliste*",
        "http://*.gamestop.at/eintauschliste*",
        "http://*.gamestop.ch/eintauschliste*",
        "https://*.gamestop.de/eintauschliste*",
        "https://*.gamestop.at/eintauschliste*",
        "https://*.gamestop.ch/eintauschliste*"
      ],
      "js": [
        "lib/jquery.js",
        "lib/jquery.remodal.min.js",
        "lib/social-likes.min.js",
        "app/functions.js",
        "app/gamestop.js"
      ],
      "css": [
        "css/gamestop.css",
        "css/jquery.remodal.css",
        "css/social-likes.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "lib/jquery.js",
      "app/functions.js",
      "app/events.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Preise suchen"
  }
}