Highlit

Highlights all occurrences of the currently selected word on page.

Was ist Highlit?

Highlit ist eine Chrome-Erweiterung, die von Nikola Toshev entwickelt wurde, und ihr Hauptmerkmal ist "Highlights all occurrences of the currently selected word on page.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Highlit-Erweiterungs-CRX-Datei herunterladen

Laden Sie Highlit-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

                        An extension that highlights all occurrences of the currently selected word or phrase (recognizing different word forms in English). This is useful to outline central concepts in a text, or visually highlight where a specific identifier is used in code in browser window. Double-click a word on the current page to highlight it and all it's occurrences.                    

Grundlegende Informationen zur Erweiterung

Name Highlit Highlit
ID cooahmcpmajfpnanjkdfiejkffphknnm
Offizielle URL https://chrome.google.com/webstore/detail/highlit/cooahmcpmajfpnanjkdfiejkffphknnm
Beschreibung Highlights all occurrences of the currently selected word on page.
Dateigröße 15.58 KB
Installationsanzahl 952
Aktuelle Version 0.2.2
Letztes Update 2019-03-08
Veröffentlichungsdatum 2019-03-08
Bewertung 3.19/5 Insgesamt 16 Bewertungen
Entwickler Nikola Toshev
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Highlit",
    "version": "0.2.2",
    "manifest_version": 2,
    "minimum_chrome_version": "39",
    "description": "Highlights all occurrences of the currently selected word on page.",
    "icons": {
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lancasterStemming.js",
                "highlit.min.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "*.map"
    ],
    "permissions": [
        "storage"
    ]
}