Google Search Quick Open

Google search result auto quick open in new tab

Wat is Google Search Quick Open?

Google Search Quick Open is een Chrome-extensie ontwikkeld door Josh Chan, en de belangrijkste functie is "Google search result auto quick open in new tab".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Google Search Quick Open

Download Google Search Quick Open-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Google Search Quick Open Google Search Quick Open
ID mhhaoajilmlcoegdoehficcpcamjbnlf
Officiële URL https://chromewebstore.google.com/detail/google-search-quick-open/mhhaoajilmlcoegdoehficcpcamjbnlf
Beschrijving Google search result auto quick open in new tab
Bestandsgrootte 11.35 KB
Aantal Installaties 109
Huidige Versie 2.1.0
Laatst Bijgewerkt 2023-02-12
Publicatiedatum 2020-08-16
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Josh Chan
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}