Highlight all on dblclick

Highlight all words in websites with one doubleclick

Hvad er Highlight all on dblclick?

Highlight all on dblclick er en Chrome-udvidelse udviklet af Trinitas, og dens hovedfunktion er "Highlight all words in websites with one doubleclick".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Highlight all on dblclick-udvidelses-CRX-fil

Download Highlight all on dblclick-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Highlight all on dblclick Highlight all on dblclick
ID ibbikoelnlhphegnjbojfeokpcneaohg
Officiel URL https://chrome.google.com/webstore/detail/highlight-all-on-dblclick/ibbikoelnlhphegnjbojfeokpcneaohg
Beskrivelse Highlight all words in websites with one doubleclick
Filstørrelse 87.89 KB
Antal Installationer 559
Nuværende Version 0.2
Senest Opdateret 2016-11-06
Udgivelsesdato 2016-11-06
Bedømmelse 3.95/5 Samlet 19 Bedømmelser
Udvikler Trinitas
Betalingsmetode free
Understøttede Sprog 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:\/\/*\/*"
    ]
}