Google Search Quick Open

Google search result auto quick open in new tab

What is Google Search Quick Open?

Google Search Quick Open is a Chrome extension developed by Josh Chan, and its main feature is "Google search result auto quick open in new tab".

Extension Screenshots

screenshot
screenshot

Download Google Search Quick Open Extension CRX File

Download Google Search Quick Open extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Feeling lazy to open all the Google search result links?

This extension can help to auto open the google search result links in the new tabs quickly.

Step:
1. Type your keyword in Google and land on the search result page
2. Click the extension icon or use shortcut (⌥ + A / Alt + A) to open all links

*Icon made by Freepik from www.flaticon.com                    

Extension Basic Information

Name Google Search Quick Open Google Search Quick Open
ID mhhaoajilmlcoegdoehficcpcamjbnlf
Official URL https://chromewebstore.google.com/detail/google-search-quick-open/mhhaoajilmlcoegdoehficcpcamjbnlf
Description Google search result auto quick open in new tab
File Size 11.35 KB
Installation Count 109
Current Version 2.1.0
Last Updated 2023-02-12
Publish Date 2020-08-16
Rating 5.00/5 Total 2 Ratings
Developer Josh Chan
Email [email protected]
Payment Type free
Supported Languages en
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": [
                ""
            ],
            "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"
    ]
}