LAPRAS SCOUT EXTENSION

LAPRAS SCOUT EXTENSION

extension for LAPRAS SCOUT

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "LAPRAS SCOUT EXTENSION",
  "version": "4.2.0",
  "description": "extension for LAPRAS SCOUT",
  "action": {
    "default_icon": "./assets/icon128.png",
    "default_title": "LAPRAS SCOUT extension"
  },
  "options_ui": {
    "page": "./dist/options/index.html",
    "open_in_tab": true
  },
  "background": {
    "service_worker": "./dist/background/index.mjs"
  },
  "icons": {
    "16": "./assets/icon128.png",
    "48": "./assets/icon128.png",
    "128": "./assets/icon128.png"
  },
  "permissions": [
    "contextMenus",
    "activeTab",
    "tabs",
    "background",
    "notifications",
    "scripting"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "./dist/contentScripts/index.global.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "dist/contentScripts/style.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}