Highlight all on dblclick

Highlight all words in websites with one doubleclick

Cos'è Highlight all on dblclick?

Highlight all on dblclick è un'estensione di Chrome sviluppata da Trinitas, e la sua funzione principale è "Highlight all words in websites with one doubleclick".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Highlight all on dblclick

Scarica i file di estensione Highlight all on dblclick 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 words in websites with one double click.

1: Click the icon so it becoms green, now it's ready. 
2: Go to some page and double click a word, it will become hightlighted and the rest matching words.
3: Click icon again so it becoms red to erase all highlighted words. 

!!! Only tested in Chrome and dosen't work in all websites !!!
Enjoy                    

Informazioni di Base sull'Estensione

Nome Highlight all on dblclick Highlight all on dblclick
ID ibbikoelnlhphegnjbojfeokpcneaohg
URL Ufficiale https://chrome.google.com/webstore/detail/highlight-all-on-dblclick/ibbikoelnlhphegnjbojfeokpcneaohg
Descrizione Highlight all words in websites with one doubleclick
Dimensione del File 87.89 KB
Conteggio Installazioni 559
Versione Corrente 0.2
Ultimo Aggiornamento 2016-11-06
Data di Pubblicazione 2016-11-06
Valutazione 3.95/5 Totale 19 Valutazioni
Sviluppatore Trinitas
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Highlight all on dblclick",
    "version": "0.2",
    "manifest_version": 2,
    "description": "Highlight all words in websites with one doubleclick",
    "icons": {
        "16": "img\/highlight16.png",
        "128": "img\/highlight128.png"
    },
    "browser_action": [],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/highlight.js"
            ]
        }
    ],
    "minimum_chrome_version": "20",
    "permissions": [
        "windows",
        "storage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}