Google Search Suggestion Extractor
Extract search suggestions from Google Search
什麼是Google Search Suggestion Extractor?
Google Search Suggestion Extractor是由https://www.bigtechies.com開發的Chrome擴展程式,該擴展的主要功能是“Extract search suggestions from Google Search”。
擴展截圖
下載Google Search Suggestion Extractor擴展crx文件
下載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 |
ID | lbgklcfhclfdeapdabmcphhkomkofbga |
官方網址 | 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" } } |