Highlit

Highlights all occurrences of the currently selected word on page.

Vad är Highlit?

Highlit är en Chrome-tillägg utvecklad av Nikola Toshev, och dess huvudfunktion är "Highlights all occurrences of the currently selected word on page.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Highlit-förlängningens CRX-fil

Ladda ner Highlit-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Highlit Highlit
ID cooahmcpmajfpnanjkdfiejkffphknnm
Officiell webbadress https://chrome.google.com/webstore/detail/highlit/cooahmcpmajfpnanjkdfiejkffphknnm
Beskrivning Highlights all occurrences of the currently selected word on page.
Filstorlek 15.58 KB
Antal Installationer 952
Aktuell Version 0.2.2
Senast Uppdaterad 2019-03-08
Publiceringsdatum 2019-03-08
Betyg 3.19/5 Totalt 16 Betyg
Utvecklare Nikola Toshev
Betalningssätt free
Stödda Språk 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"
    ]
}