oSearch: Search via OpenSearch

oSearch: Search via OpenSearch

Add OpenSearch for websites to make searching through websites easy and fast by using the Space or Tab in the address bar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_lnext_name__",
  "description": "__MSG_lnext_description__",
  "author": "Lcandy",
  "version": "0.1.8.4",
  "default_locale": "en",
  "manifest_version": 3,
  "icons": {
    "16": "./icons/fluent16.png",
    "32": "./icons/fluent32.png",
    "48": "./icons/fluent48.png",
    "128": "./icons/fluent128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/",
        "http://*/"
      ],
      "js": [
        "./opensearch.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "./background.js"
  },
  "permissions": [
    "storage"
  ],
  "action": {
    "default_title": "oSearch",
    "default_popup": "pages/popup.html"
  }
}