Google Search Suggestion Extractor

Extract search suggestions from Google Search

Google Search Suggestion Extractor là gì?

Google Search Suggestion Extractor là một tiện ích mở rộng Chrome được phát triển bởi https://www.bigtechies.com, và tính năng chính của nó là "Extract search suggestions from Google Search".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Google Search Suggestion Extractor

Tải xuống các tệp mở rộng Google Search Suggestion Extractor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Google Search Suggestion Extractor Google Search Suggestion Extractor
ID lbgklcfhclfdeapdabmcphhkomkofbga
URL Chính Thức https://chromewebstore.google.com/detail/google-search-suggestion/lbgklcfhclfdeapdabmcphhkomkofbga
Mô tả Extract search suggestions from Google Search
Kích Thước Tệp 24.17 KB
Số Lần Cài Đặt 155
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2024-02-17
Ngày Phát Hành 2024-02-17
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://www.bigtechies.com
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://www.bigtechies.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}