Context Menu Search
Search for selected text using the context menu
Cos'è Context Menu Search?
Context Menu Search è un'estensione di Chrome sviluppata da Roman Grinyov, e la sua funzione principale è "Search for selected text using the context menu".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Context Menu Search
Scarica i file di estensione Context Menu 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
Use the right-click menu to search for selected text in different search engines
NOTE:
- "downloads" permissions are required for export / import search engines
- to prevent the loss of added search engines, export them
- if you have any questions, please contact me by email
Source code: https://github.com/w3lifer/crx-context-menu-search Informazioni di Base sull'Estensione
| Nome | |
| ID | idpcgabojogahgmhdgnjkmdliaeeofka |
| URL Ufficiale | https://chromewebstore.google.com/detail/context-menu-search/idpcgabojogahgmhdgnjkmdliaeeofka |
| Descrizione | Search for selected text using the context menu |
| Dimensione del File | 166 KB |
| Conteggio Installazioni | 3,025 |
| Versione Corrente | 1.6.11 |
| Ultimo Aggiornamento | 2023-11-20 |
| Data di Pubblicazione | 2018-08-29 |
| Valutazione | 4.25/5 Totale 12 Valutazioni |
| Sviluppatore | Roman Grinyov |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Context Menu Search",
"description": "Search for selected text using the context menu",
"version": "1.6.11",
"icons": {
"16": "img\/icons\/search-zoom\/16x16.png",
"48": "img\/icons\/search-zoom\/48x48.png",
"128": "img\/icons\/search-zoom\/128x128.png"
},
"permissions": [
"contextMenus",
"downloads",
"storage"
],
"background": {
"persistent": false,
"scripts": [
"js\/common.js",
"js\/event-page.js"
]
},
"options_ui": {
"chrome_style": true,
"page": "html\/options.html"
}
} | |