guidex

guidex

GuideX: Your Easy Guide to the World

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "guidex",
  "description": "GuideX: Your Easy Guide to the World",
  "version": "1.0.0",
  "icons": {
    "16": "icon/16.png",
    "32": "icon/32.png",
    "48": "icon/48.png",
    "96": "icon/96.png",
    "128": "icon/128.png"
  },
  "permissions": [
    "sidePanel",
    "contextMenus",
    "tabs",
    "storage",
    "clipboardWrite",
    "clipboardRead",
    "cookies",
    "debugger",
    "webRequest",
    "commands",
    "activeTab",
    "scripting"
  ],
  "default_locale": "en",
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+G"
      }
    }
  },
  "action": {
    "default_title": "GuideX",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "side_panel": {
    "default_path": "sidepanel.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-scripts/ui.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content-scripts/ui.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}