Keywords Highlighter

This extension is created to highlight multiple keywords on a webpage. It's probably the best keywords highlighter you could find…

Was ist Keywords Highlighter?

Keywords Highlighter ist eine Chrome-Erweiterung, die von Tim Zhuang entwickelt wurde, und ihr Hauptmerkmal ist "This extension is created to highlight multiple keywords on a webpage. It's probably the best keywords highlighter you could find…".

Erweiterungsscreenshots

screenshot

Keywords Highlighter-Erweiterungs-CRX-Datei herunterladen

Laden Sie Keywords Highlighter-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

                        This extension is created to highlight multiple keywords on a webpage. It's probably the best keywords highlighter you could find for Google extension.

Guidance:
1. Create a project first.
2. Create data points.
3. Assign multiple keywords to each data point.

If it's a large webpage (larger than 1M), the highlighter may not load automatically. Please press the ("\") to trigger the highlighter.

If the highlighter makes the webpage messy, press ("pause break") to remove all the highlights. The pause key is near the print screen key and scroll key,

If you press key (`), it will navigate you to the first highlighted keywords. Press again, it scrolls down to the next match.

Hope you enjoy it. Feel free to feedback me if you have any question.                    

Grundlegende Informationen zur Erweiterung

Name Keywords Highlighter Keywords Highlighter
ID jkjhjjhcjcldlfmpmjmhieiioeooicol
Offizielle URL https://chrome.google.com/webstore/detail/keywords-highlighter/jkjhjjhcjcldlfmpmjmhieiioeooicol
Beschreibung This extension is created to highlight multiple keywords on a webpage. It's probably the best keywords highlighter you could find…
Dateigröße 1.39 MB
Installationsanzahl 246
Aktuelle Version 1.54.6
Letztes Update 2017-03-07
Veröffentlichungsdatum 2017-03-07
Bewertung 2.25/5 Insgesamt 4 Bewertungen
Entwickler Tim Zhuang
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Keywords Highlighter",
    "version": "1.54.6",
    "author": "Tim Zhuang",
    "permissions": [
        "tabs",
        "storage"
    ],
    "browser_action": {
        "default_popup": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "h.css"
            ],
            "js": [
                "\/js\/jquery-2.1.1.js",
                "highlight.js",
                "\/mark\/jquery.mark.es6.min.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": false
    }
}