Highlight all on dblclick

Highlight all words in websites with one doubleclick

Vad är Highlight all on dblclick?

Highlight all on dblclick är en Chrome-tillägg utvecklad av Trinitas, och dess huvudfunktion är "Highlight all words in websites with one doubleclick".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Highlight all on dblclick-förlängningens CRX-fil

Ladda ner Highlight all on dblclick-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Highlight all on dblclick Highlight all on dblclick
ID ibbikoelnlhphegnjbojfeokpcneaohg
Officiell webbadress https://chrome.google.com/webstore/detail/highlight-all-on-dblclick/ibbikoelnlhphegnjbojfeokpcneaohg
Beskrivning Highlight all words in websites with one doubleclick
Filstorlek 87.89 KB
Antal Installationer 559
Aktuell Version 0.2
Senast Uppdaterad 2016-11-06
Publiceringsdatum 2016-11-06
Betyg 3.95/5 Totalt 19 Betyg
Utvecklare Trinitas
Betalningssätt free
Stödda Språk 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:\/\/*\/*"
    ]
}