Quick Search

Search selected text quickly on Google, Wikipedia, Twitter or Amazon by hitting a key on your keyboard.

¿Qué es Quick Search?

Quick Search es una extensión de Chrome desarrollada por https://serdar.work, y su función principal es "Search selected text quickly on Google, Wikipedia, Twitter or Amazon by hitting a key on your keyboard.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Quick Search

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

                        Select a text and hit:

- Alt+S to search on Google
- Alt+W to search on Wikipedia
- Alt+T to search on Twitter
- Alt+A to search on Amazon

- You can change the shortcuts. Use "Keyboard shortcuts" in the Chrome extension settings to do that.

- Click on the extension icon to enable / disable the extension temporarily.

- Google Translate search is removed in Version 2.0, due to Chrome's maximum shortcut limit of 4. It will be added soon with the context menu search feature.

- Customizing the websites to search will be possible with the options feature in the next version.

- This extension does not mess with your data. You can view the full source code of this extension at GitHub: https://github.com/serd/quick-search                    

Información Básica de la Extensión

Nombre Quick Search Quick Search
ID chgmjmpmfefgaiogdnnjbfcbgcflofgi
URL Oficial https://chromewebstore.google.com/detail/quick-search/chgmjmpmfefgaiogdnnjbfcbgcflofgi
Descripción Search selected text quickly on Google, Wikipedia, Twitter or Amazon by hitting a key on your keyboard.
Tamaño del Archivo 10.28 KB
Cantidad de Instalaciones 887
Versión Actual 2.0.2
Última Actualización 2022-05-08
Fecha de Publicación 2017-05-28
Calificación 3.67/5 Total de 9 Calificaciones
Desarrollador https://serdar.work
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://serdar.work
URL de la Página de Política de Privacidad https://serdar.work/chrome-extensions/privacy-policy.html
Idiomas Soportados en,tr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "2.0.2",
    "manifest_version": 2,
    "description": "__MSG_extDescription__",
    "icons": {
        "128": "icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": [],
    "commands": {
        "search-google": {
            "description": "Search Google",
            "suggested_key": {
                "default": "Alt+S",
                "mac": "Alt+S"
            }
        },
        "search-wikipedia": {
            "description": "Search Wikipedia",
            "suggested_key": {
                "default": "Alt+W",
                "mac": "Alt+W"
            }
        },
        "search-amazon": {
            "description": "Search Amazon",
            "suggested_key": {
                "default": "Alt+A",
                "mac": "Alt+A"
            }
        },
        "search-twitter": {
            "description": "Search Twitter",
            "suggested_key": {
                "default": "Alt+T",
                "mac": "Alt+T"
            }
        }
    },
    "permissions": [
        "activeTab"
    ],
    "homepage_url": "https:\/\/serdar.work"
}