QuickSearch

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

Qu'est-ce que QuickSearch ?

QuickSearch est une extension Chrome développée par kevin.kik.lee, et sa fonction principale est "Highlight any text on the page, and `Cmd/Ctrl`+`Click` to search the selected text in a new tab.".

Captures d'Écran de l'Extension

Télécharger le fichier CRX de l'extension QuickSearch

Téléchargez les fichiers d'extension QuickSearch au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        - 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                    

Informations de Base sur l'Extension

Nom QuickSearch QuickSearch
ID ffkkikfngfopgdacpankegfcjkcnkjle
URL Officiel https://chromewebstore.google.com/detail/quicksearch/ffkkikfngfopgdacpankegfcjkcnkjle
Description Highlight any text on the page, and `Cmd/Ctrl`+`Click` to search the selected text in a new tab.
Taille du Fichier 11.05 KB
Nombre d'Installations 24
Version Actuelle 0.0.2
Dernière Mise à Jour 2017-11-25
Date de Publication 2017-11-25
Évaluation 5.00/5 Total 3 Évaluations
Développeur kevin.kik.lee
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}