Word Highlighter

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

Что такое Word Highlighter?

Word Highlighter - это расширение Chrome, разработанное Rafael Almeida, и его основная функция - "This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Word Highlighter

Скачайте файлы расширений Word Highlighter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название Word Highlighter Word Highlighter
ID ncjaameocjfjjnjcijikhkhifncjijhn
Официальный URL https://chromewebstore.google.com/detail/word-highlighter/ncjaameocjfjjnjcijikhkhifncjijhn
Описание This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web
Размер файла 229 KB
Количество установок 826
Текущая Версия 1.0.2
Последнее Обновление 2016-11-27
Дата публикации 2016-11-27
Рейтинг 2.75/5 Всего 8 оценок
Разработчик Rafael Almeida
Тип оплаты free
Поддерживаемые языки 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"
            ]
        }
    ]
}