Focus Search Bar

Focus Search Bar

Focus Search Bar extension will focus the search bar element on a website after pressing the keyboard shortcut CTRL + SPACE.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Focus Search Bar",
  "description": "Focus Search Bar extension will focus the search bar element on a website after pressing the keyboard shortcut CTRL + SPACE.",
  "version": "1.0.7",
  "short_name": "FSB",
  "icons": {
    "16": "img/icon/icon16.png",
    "32": "img/icon/icon32.png",
    "48": "img/icon/icon48.png",
    "128": "img/icon/icon128.png"
  },
  "action": {
    "default_icon": {
      "16": "img/icon/icon16.png",
      "32": "img/icon/icon32.png",
      "48": "img/icon/icon48.png",
      "128": "img/icon/icon128.png"
    }
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ]
}