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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}