Highlight tool

Highlight tool with jumps and Regex

Hvad er Highlight tool?

Highlight tool er en Chrome-udvidelse udviklet af Utopia, og dens hovedfunktion er "Highlight tool with jumps and Regex".

Udvidelsesskærmbilleder

screenshot

Download Highlight tool-udvidelses-CRX-fil

Download Highlight tool-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

                        Quickly highlight text in webpages using regular text or RegExp.

Press Ctrl+j to move to the next match, and Ctrl+k to move previous match.                    

Grundlæggende oplysninger om udvidelsen

Navn Highlight tool Highlight tool
ID bocgmaooafgikalnonpaccinefpncobc
Officiel URL https://chrome.google.com/webstore/detail/highlight-tool/bocgmaooafgikalnonpaccinefpncobc
Beskrivelse Highlight tool with jumps and Regex
Filstørrelse 209 KB
Antal Installationer 3,000
Nuværende Version 0.0.6
Senest Opdateret 2017-02-14
Udgivelsesdato 2017-02-14
Bedømmelse 4.00/5 Samlet 5 Bedømmelser
Udvikler Utopia
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.0.6",
    "name": "Highlight tool",
    "description": "Highlight tool with jumps and Regex",
    "manifest_version": 2,
    "icons": {
        "16": "images\/icon-16.png",
        "19": "images\/icon-19.png",
        "38": "images\/icon-38.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "notifications"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "popup.html"
    ]
}