Google Search Quick Open

Google Search Quick Open

Google search result auto quick open in new tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Google Search Quick Open",
  "description": "Google search result auto quick open in new tab",
  "version": "2.1.0",
  "manifest_version": 3,
  "default_locale": "en",
  "icons": {
    "16": "icon/icon-16.png",
    "32": "icon/icon-32.png",
    "64": "icon/icon-64.png",
    "128": "icon/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "commands": {
    "quick-open": {
      "description": "Quick Open",
      "suggested_key": {
        "default": "Alt+A",
        "mac": "Alt+A"
      }
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {},
  "permissions": [
    "tabs"
  ]
}