Google Search Suggestion Extractor

Extract search suggestions from Google Search

Google Search Suggestion Extractorคืออะไร?

Google Search Suggestion Extractor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.bigtechies.com และคุณลักษณะหลักของมันคือ "Extract search suggestions from Google Search"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Search Suggestion Extractor

ดาวน์โหลดไฟล์ส่วนขยาย Google Search Suggestion Extractor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Google Search Suggestion Extractor Google Search Suggestion Extractor
ID lbgklcfhclfdeapdabmcphhkomkofbga
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/google-search-suggestion/lbgklcfhclfdeapdabmcphhkomkofbga
คำอธิบาย Extract search suggestions from Google Search
ขนาดไฟล์ 24.17 KB
จำนวนการติดตั้ง 155
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2024-02-17
วันที่เผยแพร่ 2024-02-17
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://www.bigtechies.com
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://www.bigtechies.com/privacy-policy
ภาษาที่รองรับ 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"
    }
}