Q Search

Q Search

Query all kinds of records and massive Internet resources of the management browser in one place

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_name__",
  "version": "1.0.1",
  "manifest_version": 3,
  "description": "__MSG_description__",
  "background": {
    "service_worker": "worker.js"
  },
  "permissions": [
    "management",
    "browsingData",
    "tabs",
    "scripting"
  ],
  "optional_permissions": [
    "history",
    "topSites",
    "downloads",
    "bookmarks"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "action": {
    "default_icon": {
      "16": "icons/16.png",
      "32": "icons/32.png"
    }
  },
  "default_locale": "en",
  "homepage_url": "https://ranhe.xyz/qsearch",
  "content_scripts": [
    {
      "js": [
        "index.js"
      ],
      "all_frames": false,
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "widget/*.css",
        "assets/*.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}