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
Eメール [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"
    ]
}