Github Html Preview

Take a look at the HTML on the GitHub Repository.

Wat is Github Html Preview?

Github Html Preview is een Chrome-extensie ontwikkeld door dohyeon5626, en de belangrijkste functie is "Take a look at the HTML on the GitHub Repository.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Github Html Preview

Download Github Html Preview-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Github Html Preview Github Html Preview
ID pmpjligbgooljdpakhophgddmcipglna
Officiële URL https://chromewebstore.google.com/detail/github-html-preview/pmpjligbgooljdpakhophgddmcipglna
Beschrijving Take a look at the HTML on the GitHub Repository.
Bestandsgrootte 45.41 KB
Aantal Installaties 571
Huidige Versie 2.0
Laatst Bijgewerkt 2023-05-13
Publicatiedatum 2022-12-30
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar dohyeon5626
E-mail [email protected]
Betalingswijze free
Help Pagina-URL https://github.com/dohyeon5626/github-html-preview-extension
Ondersteunde Talen 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"
            ]
        }
    ]
}