Google Search Suggestion Extractor

Extract search suggestions from Google Search

Co to jest Google Search Suggestion Extractor?

Google Search Suggestion Extractor to rozszerzenie Chrome opracowane przez https://www.bigtechies.com, a jego główną funkcją jest „Extract search suggestions from Google Search”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Google Search Suggestion Extractor

Pobierz pliki rozszerzeń Google Search Suggestion Extractor w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Google Search Suggestion Extractor Google Search Suggestion Extractor
ID lbgklcfhclfdeapdabmcphhkomkofbga
Oficjalny URL https://chromewebstore.google.com/detail/google-search-suggestion/lbgklcfhclfdeapdabmcphhkomkofbga
Opis Extract search suggestions from Google Search
Rozmiar pliku 24.17 KB
Liczba instalacji 155
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2024-02-17
Data Publikacji 2024-02-17
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper https://www.bigtechies.com
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://www.bigtechies.com/privacy-policy
Obsługiwane Języki 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"
    }
}