Slash to search

Slash to search

Jump to the search box on any website by pressing the forward slash key on your keyboard.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "scripts/background.js"
  },
  "action": {
    "default_icon": "images/slash_to_search.png",
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/index.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "Jump to the search box on any website by pressing the forward slash key on your keyboard.",
  "icons": {
    "48": "images/slash_to_search.png"
  },
  "manifest_version": 3,
  "name": "Slash to search",
  "offline_enabled": true,
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "permissions": [
    "activeTab",
    "storage",
    "contextMenus"
  ],
  "short_name": "Slash to search",
  "version": "1.0.5"
}