HubLighter - GitHub Code Highlighter

Highlight all selected code occurrences on any GitHub pull request page or source page

O que é HubLighter - GitHub Code Highlighter?

HubLighter - GitHub Code Highlighter é uma extensão do Chrome desenvolvida por hvetko, e sua principal característica é "Highlight all selected code occurrences on any GitHub pull request page or source page".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão HubLighter - GitHub Code Highlighter

Baixe arquivos de extensão HubLighter - GitHub Code 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

                        Simple highlighting tool for GitHub code reviews. Highlight any code and all other occurrences on page will be highlighted.

Extension does not require any special permission or GitHub credentials. It is open source, hosted on GitHub.

This extension is not endorsed by, sponsored by, or affiliated with GitHub.                    

Informações Básicas da Extensão

Nome HubLighter - GitHub Code Highlighter HubLighter - GitHub Code Highlighter
ID lglodolklpafcnjeaphjdijmfbmikkgn
URL Oficial https://chromewebstore.google.com/detail/hublighter-github-code-hi/lglodolklpafcnjeaphjdijmfbmikkgn
Descrição Highlight all selected code occurrences on any GitHub pull request page or source page
Tamanho do Arquivo 58.39 KB
Contagem de Instalações 37
Versão Atual 1.2.1
Última Atualização 2017-06-22
Data de Publicação 2017-06-22
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor hvetko
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/hvetko/hublighter
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "browser_action": {
        "default_icon": "img\/hublighter-16.png",
        "default_popup": "html\/popup.html",
        "default_title": "HubLighter - GitHub Code Highlighter"
    },
    "content_scripts": [
        {
            "css": [
                "css\/hublighter.css"
            ],
            "js": [
                "js\/jquery-3.2.1.min.js",
                "js\/content.js"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ]
        }
    ],
    "description": "Highlight all selected code occurrences on any GitHub pull request page or source page",
    "homepage_url": "https:\/\/github.com\/hvetko\/hublighter",
    "icons": {
        "128": "img\/hublighter-128.png",
        "16": "img\/hublighter-16.png",
        "48": "img\/hublighter-48.png"
    },
    "manifest_version": 2,
    "name": "HubLighter - GitHub Code Highlighter",
    "options_page": "html\/options.html",
    "permissions": [
        "storage",
        "https:\/\/github.com\/"
    ],
    "version": "1.2.1"
}