Smart Search

Smart Search

Better than Ctrl+F. It shows also similar matches. Shortkey: Ctrl+Shift+F

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Smart Search",
  "description": "Better than Ctrl+F. It shows also similar matches. Shortkey: Ctrl+Shift+F",
  "version": "0.2",
  "manifest_version": 3,
  "icons": {
    "16": "graphic/logo16.png",
    "48": "graphic/logo48.png",
    "128": "graphic/logo128.png"
  },
  "cross_origin_embedder_policy": {
    "value": "require-corp"
  },
  "cross_origin_opener_policy": {
    "value": "same-origin"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+F"
      }
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "lib/jquery-3.6.0/jquery-3.6.0.min.js",
        "lib/mark.js/mark.es6.min.js",
        "js/content.js"
      ],
      "css": [
        "css/mark.css"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "content_security_policy": {
    "sandbox": "sandbox allow-scripts; script-src 'unsafe-eval'; worker-src blob:"
  },
  "sandbox": {
    "pages": [
      "searchSandbox/searchEngineSandbox.html"
    ]
  }
}