Highlit

Highlights all occurrences of the currently selected word on page.

Qu'est-ce que Highlit ?

Highlit est une extension Chrome développée par Nikola Toshev, et sa fonction principale est "Highlights all occurrences of the currently selected word on page.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Highlit

Téléchargez les fichiers d'extension Highlit au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Highlit Highlit
ID cooahmcpmajfpnanjkdfiejkffphknnm
URL Officiel https://chrome.google.com/webstore/detail/highlit/cooahmcpmajfpnanjkdfiejkffphknnm
Description Highlights all occurrences of the currently selected word on page.
Taille du Fichier 15.58 KB
Nombre d'Installations 952
Version Actuelle 0.2.2
Dernière Mise à Jour 2019-03-08
Date de Publication 2019-03-08
Évaluation 3.19/5 Total 16 Évaluations
Développeur Nikola Toshev
Type de Paiement free
Langues Prises en Charge 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"
    ]
}