Hotkeys for Search
Perform a search for selected text using keyboard shortcuts.
Cos'è Hotkeys for Search?
Hotkeys for Search è un'estensione di Chrome sviluppata da Juuso H, e la sua funzione principale è "Perform a search for selected text using keyboard shortcuts.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Hotkeys for Search
Scarica i file di estensione Hotkeys for Search 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
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | gfmeadbjkfhkeklgaomifcaihbhpeido |
| URL Ufficiale | https://chromewebstore.google.com/detail/hotkeys-for-search/gfmeadbjkfhkeklgaomifcaihbhpeido |
| Descrizione | Perform a search for selected text using keyboard shortcuts. |
| Dimensione del File | 22.13 KB |
| Conteggio Installazioni | 1,779 |
| Versione Corrente | 1.3.1 |
| Ultimo Aggiornamento | 2020-11-23 |
| Data di Pubblicazione | 2020-06-28 |
| Valutazione | 4.45/5 Totale 20 Valutazioni |
| Sviluppatore | Juuso H |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/Juuso-h/hotkeys-for-search |
| Lingue Supportate | 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
}
} | |