Google Search Suggestion Extractor

Extract search suggestions from Google Search

Cos'è Google Search Suggestion Extractor?

Google Search Suggestion Extractor è un'estensione di Chrome sviluppata da https://www.bigtechies.com, e la sua funzione principale è "Extract search suggestions from Google Search".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Google Search Suggestion Extractor

Scarica i file di estensione Google Search Suggestion Extractor in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        The Google Search Suggestion Extractor is a Chrome extension designed to enhance the user's experience while using Google Search. Its primary functionality revolves around extracting and managing search suggestions provided by Google. This extension operates under the updated Chrome Extension Manifest V3 guidelines, ensuring a more secure and efficient performance.                    

Informazioni di Base sull'Estensione

Nome Google Search Suggestion Extractor Google Search Suggestion Extractor
ID lbgklcfhclfdeapdabmcphhkomkofbga
URL Ufficiale https://chromewebstore.google.com/detail/google-search-suggestion/lbgklcfhclfdeapdabmcphhkomkofbga
Descrizione Extract search suggestions from Google Search
Dimensione del File 24.17 KB
Conteggio Installazioni 155
Versione Corrente 1.0
Ultimo Aggiornamento 2024-02-17
Data di Pubblicazione 2024-02-17
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore https://www.bigtechies.com
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://www.bigtechies.com/privacy-policy
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Google Search Suggestion Extractor",
    "version": "1.0",
    "description": "Extract search suggestions from Google Search",
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "icon.png"
    }
}