Github Html Preview

Take a look at the HTML on the GitHub Repository.

O que é Github Html Preview?

Github Html Preview é uma extensão do Chrome desenvolvida por dohyeon5626, e sua principal característica é "Take a look at the HTML on the GitHub Repository.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Github Html Preview

Baixe arquivos de extensão Github Html Preview 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 extension provides a preview of the html file uploaded to github. You can view rough results without having to copy locally.

Features
- You can click preview button in github html page
- You can see the preview results on the new tab.
- GitHub token settings allow you to view HTML preview results in your private repository.

If there is a problem, please register the issue through the link below.
https://github.com/dohyeon5626/github-html-preview-extension/issues                    

Informações Básicas da Extensão

Nome Github Html Preview Github Html Preview
ID pmpjligbgooljdpakhophgddmcipglna
URL Oficial https://chromewebstore.google.com/detail/github-html-preview/pmpjligbgooljdpakhophgddmcipglna
Descrição Take a look at the HTML on the GitHub Repository.
Tamanho do Arquivo 45.41 KB
Contagem de Instalações 571
Versão Atual 2.0
Última Atualização 2023-05-13
Data de Publicação 2022-12-30
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor dohyeon5626
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/dohyeon5626/github-html-preview-extension
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Html Preview",
    "description": "Take a look at the HTML on the GitHub Repository.",
    "version": "2.0",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/github.com\/*",
        "https:\/\/raw.githubusercontent.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "page\/preview.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "16": "icon\/16.png",
        "32": "icon\/32.png",
        "48": "icon\/48.png",
        "128": "icon\/128.png"
    },
    "action": {
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*.html"
            ],
            "js": [
                "html-page-content.js"
            ]
        }
    ]
}