GitHub Mention Highlighter

Highlight user and team mentions on GitHub

O que é GitHub Mention Highlighter?

GitHub Mention Highlighter é uma extensão do Chrome desenvolvida por Ben Balter, e sua principal característica é "Highlight user and team mentions on GitHub".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão GitHub Mention Highlighter

Baixe arquivos de extensão GitHub Mention Highlighter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome GitHub Mention Highlighter GitHub Mention Highlighter
ID ojclbekffnkgbacniibdebdihhgenlkp
URL Oficial https://chromewebstore.google.com/detail/github-mention-highlighte/ojclbekffnkgbacniibdebdihhgenlkp
Descrição Highlight user and team mentions on GitHub
Tamanho do Arquivo 201 KB
Contagem de Instalações 278
Versão Atual 0.2.1
Última Atualização 2020-02-05
Data de Publicação 2020-02-05
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Ben Balter
Tipo de Pagamento free
Site da Extensão https://github.com/benbalter/github-mention-highlighter
URL da Página de Ajuda https://github.com/benbalter/github-mention-highlighter/issues
Idiomas Suportados 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
    }
}