Highlighter Tool

Keeps a list of words and phrases to Highlight when active

Что такое Highlighter Tool?

Highlighter Tool - это расширение Chrome, разработанное n33san, и его основная функция - "Keeps a list of words and phrases to Highlight when active".

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

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

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

                        *Update: The extension now requires you to click the icon to highlight the terms in the current tab. This gives you the power to find what you need when you need it.

This extension saves a list of words or phrases to highlight on any webpage. Developed for reddit user /u/Gravitom

It's clunky and not very pretty, but it was developed in a bit of a rush to practice JS and get 1 user his desired Google Chrome extension.                    

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

Название Highlighter Tool Highlighter Tool
ID agkdcdgphcoadkhbphpbnaohejifmbgg
Официальный URL https://chrome.google.com/webstore/detail/highlighter-tool/agkdcdgphcoadkhbphpbnaohejifmbgg
Описание Keeps a list of words and phrases to Highlight when active
Размер файла 39.48 KB
Количество установок 223
Текущая Версия 0.2.1
Последнее Обновление 2017-05-16
Дата публикации 2017-05-16
Рейтинг 3.33/5 Всего 3 оценок
Разработчик n33san
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Highlighter Tool",
    "version": "0.2.1",
    "description": "Keeps a list of words and phrases to Highlight when active",
    "permissions": [
        "tabs",
        "",
        "storage"
    ],
    "browser_action": {
        "default_icon": "pencil32.png",
        "default_title": "Click to highlight"
    },
    "options_ui": {
        "page": "popup.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.2.1.min.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "brAction.js",
            "myscript.js"
        ]
    },
    "icons": {
        "32": "pencil32.png",
        "128": "pencil128.png"
    },
    "manifest_version": 2
}