Trooper extensie (Botje)

Trooper extensie (Botje)

Ik bliep tevoorschijn telkens jij een Troopershop vindt

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "nl",
  "name": "__MSG_extensionName__",
  "version": "1.4.2",
  "description": "__MSG_extensionDescription__",
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "https://trooper.be/",
    "https://*.trooper.be/"
  ],
  "options_page": "src/pages/options/index.html",
  "background": {
    "service_worker": "src/pages/background/index.js",
    "type": "module"
  },
  "action": {
    "default_popup": "src/pages/popup/index.html",
    "default_icon": "icon-34.png"
  },
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "src/pages/contentInjected/index.js"
      ],
      "css": [
        "assets/css/contentStyle1714377103609.chunk.css"
      ]
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "src/pages/contentUI/index.js"
      ]
    }
  ],
  "devtools_page": "src/pages/devtools/index.html",
  "web_accessible_resources": [
    {
      "resources": [
        "/assets/js/*.js",
        "/assets/css/*.css",
        "/assets/woff2/*.woff2",
        "/assets/png/*.png",
        "/assets/gif/*.gif",
        "/assets/svg/*.svg",
        "/assets/jpg/*.jpg",
        "icon-128.png",
        "icon-34.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}