Word Highlighter

This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web

Co to jest Word Highlighter?

Word Highlighter to rozszerzenie Chrome opracowane przez Rafael Almeida, a jego główną funkcją jest „This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Word Highlighter

Pobierz pliki rozszerzeń Word Highlighter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        The source code for this extension is available at https://github.com/rafaelcpalmeida/Word-Highlighter                    

Podstawowe informacje o rozszerzeniu

Nazwa Word Highlighter Word Highlighter
ID ncjaameocjfjjnjcijikhkhifncjijhn
Oficjalny URL https://chromewebstore.google.com/detail/word-highlighter/ncjaameocjfjjnjcijikhkhifncjijhn
Opis This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web
Rozmiar pliku 229 KB
Liczba instalacji 826
Aktualna Wersja 1.0.2
Ostatnia Aktualizacja 2016-11-27
Data Publikacji 2016-11-27
Ocena 2.75/5 Łącznie 8 Oceny
Deweloper Rafael Almeida
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Word Highlighter",
    "description": "This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web",
    "version": "1.0.2",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "html\/popup.html"
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/content.js"
            ]
        }
    ]
}