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 |
官方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" } } |