QuickSearch

Highlight any text on the page, and `Cmd/Ctrl`+`Click` to search the selected text in a new tab.

¿Qué es QuickSearch?

QuickSearch es una extensión de Chrome desarrollada por kevin.kik.lee, y su función principal es "Highlight any text on the page, and `Cmd/Ctrl`+`Click` to search the selected text in a new tab.".

Capturas de Pantalla de la Extensión

Descargar Archivo CRX de la Extensión QuickSearch

Descarga archivos de extensión QuickSearch 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

                        - Cmd/Ctrl+Click to search in a new tab
- Cmd/Ctrl+Shft+Click to focus the new tab.
- Free and open-source forever
- A keyboard shortcut is coming soon

------------------------------------------------------------

Highlighting text, then right-clicking and selecting "Search Google for..." is an action I have conducted repeatedly throughout the day, every single day for probably a decade. I wanted to simplify the process by writing a small Chrome extension.

There is one more major functionality I would like to add (adding a keyboard shortcut), but all other changes will be related to maintenance and refactoring only.  If anyone has any ideas making the extension smaller and more efficient, please don't hesitate to contribute.  

GitHub:  https://github.com/kevinkiklee/quicksearch                    

Información Básica de la Extensión

Nombre QuickSearch QuickSearch
ID ffkkikfngfopgdacpankegfcjkcnkjle
URL Oficial https://chromewebstore.google.com/detail/quicksearch/ffkkikfngfopgdacpankegfcjkcnkjle
Descripción Highlight any text on the page, and `Cmd/Ctrl`+`Click` to search the selected text in a new tab.
Tamaño del Archivo 11.05 KB
Cantidad de Instalaciones 24
Versión Actual 0.0.2
Última Actualización 2017-11-25
Fecha de Publicación 2017-11-25
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador kevin.kik.lee
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "QuickSearch",
    "short_name": "QuickSearch",
    "version": "0.0.2",
    "description": "Highlight any text on the page, and `Cmd\/Ctrl`+`Click` to search the selected text in a new tab.",
    "icons": {
        "16": "icons\/icon16.png",
        "64": "icons\/icon64.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon64.png"
    },
    "permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}