Highlight tool

Highlight tool with jumps and Regex

Was ist Highlight tool?

Highlight tool ist eine Chrome-Erweiterung, die von Utopia entwickelt wurde, und ihr Hauptmerkmal ist "Highlight tool with jumps and Regex".

Erweiterungsscreenshots

screenshot

Highlight tool-Erweiterungs-CRX-Datei herunterladen

Laden Sie Highlight tool-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Highlight tool Highlight tool
ID bocgmaooafgikalnonpaccinefpncobc
Offizielle URL https://chrome.google.com/webstore/detail/highlight-tool/bocgmaooafgikalnonpaccinefpncobc
Beschreibung Highlight tool with jumps and Regex
Dateigröße 209 KB
Installationsanzahl 3,000
Aktuelle Version 0.0.6
Letztes Update 2017-02-14
Veröffentlichungsdatum 2017-02-14
Bewertung 4.00/5 Insgesamt 5 Bewertungen
Entwickler Utopia
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}