Quickfind
highlight all occurrences of a specific phrase on a web page by alt + double clicking a word or alt + selecting a word.
Cos'è Quickfind?
Quickfind è un'estensione di Chrome sviluppata da matthew, e la sua funzione principale è "highlight all occurrences of a specific phrase on a web page by alt + double clicking a word or alt + selecting a word.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Quickfind
Scarica i file di estensione Quickfind 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
Highlight all occurrences of a specific word on a web page by alt + double clicking it or highlight a phrase by alt + selecting it.
This is really useful for skimming text or documentation.
## THIS EXTENSION IS IN DEV BETA ## Informazioni di Base sull'Estensione
| Nome | |
| ID | dhamednoifcgcdpdoodioenmiakpccjo |
| URL Ufficiale | https://chromewebstore.google.com/detail/quickfind/dhamednoifcgcdpdoodioenmiakpccjo |
| Descrizione | highlight all occurrences of a specific phrase on a web page by alt + double clicking a word or alt + selecting a word. |
| Dimensione del File | 41.68 KB |
| Conteggio Installazioni | 400 |
| Versione Corrente | 1.3 |
| Ultimo Aggiornamento | 2016-01-09 |
| Data di Pubblicazione | 2016-01-09 |
| Valutazione | 3.57/5 Totale 7 Valutazioni |
| Sviluppatore | matthew |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Quickfind",
"description": "highlight all occurrences of a specific phrase on a web page by alt + double clicking a word or alt + selecting a word.",
"version": "1.3",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"32": "icon32.png",
"128": "icon128.png"
},
"author": "Matthew Moy",
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"css": [
"style.css"
],
"js": [
"jquery-2.1.4.min.js",
"search.js",
"findAndReplaceDOM.min.js"
]
}
]
} | |