GitHub Mention Highlighter

Highlight user and team mentions on GitHub

Что такое GitHub Mention Highlighter?

GitHub Mention Highlighter - это расширение Chrome, разработанное Ben Balter, и его основная функция - "Highlight user and team mentions on GitHub".

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

screenshot

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

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

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

                        This Chrome extension automatically highlights any time you are mentioned on a GitHub issue or pull request thread by highlighting your username, any team your a member of, and the border of any containing comment.                    

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

Название GitHub Mention Highlighter GitHub Mention Highlighter
ID ojclbekffnkgbacniibdebdihhgenlkp
Официальный URL https://chromewebstore.google.com/detail/github-mention-highlighte/ojclbekffnkgbacniibdebdihhgenlkp
Описание Highlight user and team mentions on GitHub
Размер файла 201 KB
Количество установок 278
Текущая Версия 0.2.1
Последнее Обновление 2020-02-05
Дата публикации 2020-02-05
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Ben Balter
Тип оплаты free
Официальный сайт расширения https://github.com/benbalter/github-mention-highlighter
URL страницы помощи https://github.com/benbalter/github-mention-highlighter/issues
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Mention Highlighter",
    "version": "0.2.1",
    "description": "Highlight user and team mentions on GitHub",
    "permissions": [
        "https:\/\/github.com\/*",
        "https:\/\/*.githubapp.com\/*",
        "https:\/\/mail.google.com\/*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/*.githubapp.com\/*",
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "vendor\/jquery\/dist\/jquery.js",
                "dist\/script.js"
            ],
            "css": [
                "dist\/style.css"
            ]
        }
    ],
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "manifest_version": 2,
    "options_page": "dist\/options.html",
    "options_ui": {
        "page": "dist\/options.html",
        "chrome_style": true
    }
}