Github Html Preview

Take a look at the HTML on the GitHub Repository.

Was ist Github Html Preview?

Github Html Preview ist eine Chrome-Erweiterung, die von dohyeon5626 entwickelt wurde, und ihr Hauptmerkmal ist "Take a look at the HTML on the GitHub Repository.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Github Html Preview-Erweiterungs-CRX-Datei herunterladen

Laden Sie Github Html Preview-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Github Html Preview Github Html Preview
ID pmpjligbgooljdpakhophgddmcipglna
Offizielle URL https://chromewebstore.google.com/detail/github-html-preview/pmpjligbgooljdpakhophgddmcipglna
Beschreibung Take a look at the HTML on the GitHub Repository.
Dateigröße 45.41 KB
Installationsanzahl 571
Aktuelle Version 2.0
Letztes Update 2023-05-13
Veröffentlichungsdatum 2022-12-30
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler dohyeon5626
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://github.com/dohyeon5626/github-html-preview-extension
Unterstützte Sprachen 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"
            ]
        }
    ]
}