Hotkeys for Search
Perform a search for selected text using keyboard shortcuts.
Qu'est-ce que Hotkeys for Search ?
Hotkeys for Search est une extension Chrome développée par Juuso H, et sa fonction principale est "Perform a search for selected text using keyboard shortcuts.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Hotkeys for Search
Téléchargez les fichiers d'extension Hotkeys for Search 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
1. Select text on a web page using the mouse. 2. Press a keyboard shortcut to search for the selected text on your desired website. Default shortcuts: Alt+Q = Google Alt+W = Wikipedia Alt+A = Google Images Alt+S = YouTube The target search websites and keyboard shortcuts can be changed from the extension settings menu. Source code: https://github.com/Juuso-h/hotkeys-for-search
Informations de Base sur l'Extension
Nom | Hotkeys for Search |
ID | gfmeadbjkfhkeklgaomifcaihbhpeido |
URL Officiel | https://chromewebstore.google.com/detail/hotkeys-for-search/gfmeadbjkfhkeklgaomifcaihbhpeido |
Description | Perform a search for selected text using keyboard shortcuts. |
Taille du Fichier | 22.13 KB |
Nombre d'Installations | 1,779 |
Version Actuelle | 1.3.1 |
Dernière Mise à Jour | 2020-11-23 |
Date de Publication | 2020-06-28 |
Évaluation | 4.45/5 Total 20 Évaluations |
Développeur | Juuso H |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/Juuso-h/hotkeys-for-search |
Langues Prises en Charge | en,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_name__", "version": "1.3.1", "manifest_version": 2, "description": "__MSG_description__", "default_locale": "en", "background": { "scripts": [ "background.js" ] }, "icons": { "16": "icon.png", "128": "icon2.png" }, "permissions": [ "commands", "activeTab", "storage" ], "commands": { "search1": { "suggested_key": { "default": "Alt+Q" }, "description": "Website 1" }, "search2": { "suggested_key": { "default": "Alt+W" }, "description": "Website 2" }, "search3": { "suggested_key": { "default": "Alt+A" }, "description": "Website 3" }, "search4": { "suggested_key": { "default": "Alt+S" }, "description": "Website 4" } }, "browser_action": { "default_popup": "options.html" }, "options_ui": { "page": "options.html", "chrome_style": true } } |