Synonym Control-F
Control-F that also searches through synonyms.
Cos'è Synonym Control-F?
Synonym Control-F è un'estensione di Chrome sviluppata da Neil Patil, e la sua funzione principale è "Control-F that also searches through synonyms.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Synonym Control-F
Scarica i file di estensione Synonym Control-F 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
Ctrl-F that works for synonyms, too!
Ever wanted to find not just the exact word in a page, but other words like it too? Look no further.
An extremely simple utility to find all similar words in a page. Informazioni di Base sull'Estensione
| Nome | |
| ID | ecaoofnlakiannealbioeelkagigklll |
| URL Ufficiale | https://chrome.google.com/webstore/detail/synonym-control-f/ecaoofnlakiannealbioeelkagigklll |
| Descrizione | Control-F that also searches through synonyms. |
| Dimensione del File | 3.76 MB |
| Conteggio Installazioni | 332 |
| Versione Corrente | 1.1 |
| Ultimo Aggiornamento | 2014-08-05 |
| Data di Pubblicazione | 2014-08-05 |
| Valutazione | 3.17/5 Totale 6 Valutazioni |
| Sviluppatore | Neil Patil |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Synonym Control-F",
"description": "Control-F that also searches through synonyms.",
"version": "1.1",
"permissions": [
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"browser_action": {
"default_title": "Highlight synonyms",
"default_popup": "popup.html",
"default_icon": "icon\/icon-38.png"
},
"web_accessible_resources": [
"thesaurus.txt"
],
"icons": {
"16": "icon\/icon-16.png",
"48": "icon\/icon-48.png",
"128": "icon\/icon-128.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+X",
"mac": "Command+Shift+X"
},
"description": "Synonym Control-F"
}
}
} | |