QuickSearch

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

Cos'è QuickSearch?

QuickSearch è un'estensione di Chrome sviluppata da kevin.kik.lee, e la sua funzione principale è "Highlight any text on the page, and `Cmd/Ctrl`+`Click` to search the selected text in a new tab.".

Screenshot dell'Estensione

Scarica il file CRX dell'estensione QuickSearch

Scarica i file di estensione QuickSearch in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        - 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                    

Informazioni di Base sull'Estensione

Nome QuickSearch QuickSearch
ID ffkkikfngfopgdacpankegfcjkcnkjle
URL Ufficiale https://chromewebstore.google.com/detail/quicksearch/ffkkikfngfopgdacpankegfcjkcnkjle
Descrizione Highlight any text on the page, and `Cmd/Ctrl`+`Click` to search the selected text in a new tab.
Dimensione del File 11.05 KB
Conteggio Installazioni 24
Versione Corrente 0.0.2
Ultimo Aggiornamento 2017-11-25
Data di Pubblicazione 2017-11-25
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore kevin.kik.lee
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}