Amazing Searcher
Add useful information to Google Search results
什么是Amazing Searcher?
Amazing Searcher是由eetann开发的Chrome扩展程序,该扩展的主要功能是“Add useful information to Google Search results”。
扩展截图
下载Amazing Searcher扩展crx文件
下载Amazing Searcher扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Amazing Searcher adds the following link to the Google search results.
* `Term`: restrict results to a specific time period
* `Lang`: restrict results to a specific language
* `Recipe`: following link about search words.
* Homepage
* Reference
* Search By Reference (Search in Reference by Reference)
* Search By Google (Search in Reference by Google)
* The link you registered on the settings page
* The Memo you registered on the settings page
`Term`, `Lang` and `Recipe` can be set in the options page.
In particular, by setting up a lot of `Recipe`, you can greatly reduce the time it takes to get to the information you want! 扩展基本信息
| 名称 | |
| ID | poheekmlppakdboaalpmhfpbmnefeokj |
| 官方URL | https://chromewebstore.google.com/detail/amazing-searcher/poheekmlppakdboaalpmhfpbmnefeokj |
| 简介 | Add useful information to Google Search results |
| 文件大小 | 408 KB |
| 安装次数 | 833 |
| 当前版本 | 1.0.2 |
| 更新时间 | 2021-11-09 |
| 上架时间 | 2021-05-31 |
| 评分 | 5.00/5 共5次评分 |
| 开发者 | eetann |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/eetann/amazing-searcher |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Amazing Searcher",
"version": "1.0.2",
"description": "Add useful information to Google Search results",
"author": "eetann",
"icons": {
"16": "imgs\/extension_icon16.png",
"32": "imgs\/extension_icon32.png",
"48": "imgs\/extension_icon48.png",
"128": "imgs\/extension_icon128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.google.com\/search?*"
],
"css": [
"chunk.css"
],
"js": [
"chunk.js",
"content.js"
]
}
],
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage"
],
"options_page": "options.html"
} | |