Google Search Quick Open

Google search result auto quick open in new tab

什么是Google Search Quick Open?

Google Search Quick Open是由Josh Chan开发的Chrome扩展程序,该扩展的主要功能是“Google search result auto quick open in new tab”。

扩展截图

screenshot
screenshot

下载Google Search Quick Open扩展crx文件

下载Google Search Quick Open扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Google Search Quick Open Google Search Quick Open
ID mhhaoajilmlcoegdoehficcpcamjbnlf
官方URL https://chromewebstore.google.com/detail/google-search-quick-open/mhhaoajilmlcoegdoehficcpcamjbnlf
简介 Google search result auto quick open in new tab
文件大小 11.35 KB
安装次数 109
当前版本 2.1.0
更新时间 2023-02-12
上架时间 2020-08-16
评分 5.00/5 共2次评分
开发者 Josh Chan
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
    ]
}