Amazing Searcher
Add useful information to Google Search results
¿Qué es Amazing Searcher?
Amazing Searcher es una extensión de Chrome desarrollada por eetann, y su función principal es "Add useful information to Google Search results".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Amazing Searcher
Descarga archivos de extensión Amazing Searcher en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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!
Información Básica de la Extensión
Nombre | Amazing Searcher |
ID | poheekmlppakdboaalpmhfpbmnefeokj |
URL Oficial | https://chromewebstore.google.com/detail/amazing-searcher/poheekmlppakdboaalpmhfpbmnefeokj |
Descripción | Add useful information to Google Search results |
Tamaño del Archivo | 408 KB |
Cantidad de Instalaciones | 833 |
Versión Actual | 1.0.2 |
Última Actualización | 2021-11-09 |
Fecha de Publicación | 2021-05-31 |
Calificación | 5.00/5 Total de 5 Calificaciones |
Desarrollador | eetann |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/eetann/amazing-searcher |
Idiomas Soportados | 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" } |