Google Search Suggestion Extractor

Extract search suggestions from Google Search

What is Google Search Suggestion Extractor?

Google Search Suggestion Extractor is a Chrome extension developed by https://www.bigtechies.com, and its main feature is "Extract search suggestions from Google Search".

Extension Screenshots

screenshot

Download Google Search Suggestion Extractor Extension CRX File

Download Google Search Suggestion Extractor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Google Search Suggestion Extractor Google Search Suggestion Extractor
ID lbgklcfhclfdeapdabmcphhkomkofbga
Official URL https://chromewebstore.google.com/detail/google-search-suggestion/lbgklcfhclfdeapdabmcphhkomkofbga
Description Extract search suggestions from Google Search
File Size 24.17 KB
Installation Count 155
Current Version 1.0
Last Updated 2024-02-17
Publish Date 2024-02-17
Rating 5.00/5 Total 2 Ratings
Developer https://www.bigtechies.com
Email [email protected]
Payment Type free
Privacy Policy Page URL https://www.bigtechies.com/privacy-policy
Supported Languages 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"
    }
}