Highlight all on dblclick

Highlight all words in websites with one doubleclick

Wat is Highlight all on dblclick?

Highlight all on dblclick is een Chrome-extensie ontwikkeld door Trinitas, en de belangrijkste functie is "Highlight all words in websites with one doubleclick".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Highlight all on dblclick

Download Highlight all on dblclick-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Highlight all on dblclick Highlight all on dblclick
ID ibbikoelnlhphegnjbojfeokpcneaohg
Officiële URL https://chrome.google.com/webstore/detail/highlight-all-on-dblclick/ibbikoelnlhphegnjbojfeokpcneaohg
Beschrijving Highlight all words in websites with one doubleclick
Bestandsgrootte 87.89 KB
Aantal Installaties 559
Huidige Versie 0.2
Laatst Bijgewerkt 2016-11-06
Publicatiedatum 2016-11-06
Beoordeling 3.95/5 Totaal 19 Beoordelingen
Ontwikkelaar Trinitas
Betalingswijze free
Ondersteunde Talen 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:\/\/*\/*"
    ]
}