BestSuggest

BestSuggest

The fastest way to find exactly what you’re looking for.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "BestSuggest",
  "version": "1.2.3",
  "description": "The fastest way to find exactly what you’re looking for.",
  "manifest_version": 3,
  "icons": {
    "16": "icons/16x16.png",
    "19": "icons/19x19.png",
    "32": "icons/32x32.png",
    "38": "icons/38x38.png",
    "48": "icons/48x48.png",
    "64": "icons/64x64.png",
    "128": "icons/128x128.png",
    "256": "icons/256x256.png"
  },
  "permissions": [
    "storage",
    "alarms",
    "tabGroups"
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "run_at": "document_end",
      "all_frames": false
    },
    {
      "js": [
        "site.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "action": {
    "default_title": "",
    "default_popup": "popup/index.html"
  }
}