QuickSearch

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

Was ist QuickSearch?

QuickSearch ist eine Chrome-Erweiterung, die von kevin.kik.lee entwickelt wurde, und ihr Hauptmerkmal ist "Highlight any text on the page, and `Cmd/Ctrl`+`Click` to search the selected text in a new tab.".

Erweiterungsscreenshots

QuickSearch-Erweiterungs-CRX-Datei herunterladen

Laden Sie QuickSearch-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        - 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                    

Grundlegende Informationen zur Erweiterung

Name QuickSearch QuickSearch
ID ffkkikfngfopgdacpankegfcjkcnkjle
Offizielle URL https://chromewebstore.google.com/detail/quicksearch/ffkkikfngfopgdacpankegfcjkcnkjle
Beschreibung Highlight any text on the page, and `Cmd/Ctrl`+`Click` to search the selected text in a new tab.
Dateigröße 11.05 KB
Installationsanzahl 24
Aktuelle Version 0.0.2
Letztes Update 2017-11-25
Veröffentlichungsdatum 2017-11-25
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler kevin.kik.lee
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}