Github Html Preview

Take a look at the HTML on the GitHub Repository.

Qu'est-ce que Github Html Preview ?

Github Html Preview est une extension Chrome développée par dohyeon5626, et sa fonction principale est "Take a look at the HTML on the GitHub Repository.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Github Html Preview

Téléchargez les fichiers d'extension Github Html Preview au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Github Html Preview Github Html Preview
ID pmpjligbgooljdpakhophgddmcipglna
URL Officiel https://chromewebstore.google.com/detail/github-html-preview/pmpjligbgooljdpakhophgddmcipglna
Description Take a look at the HTML on the GitHub Repository.
Taille du Fichier 45.41 KB
Nombre d'Installations 571
Version Actuelle 2.0
Dernière Mise à Jour 2023-05-13
Date de Publication 2022-12-30
Évaluation 5.00/5 Total 1 Évaluations
Développeur dohyeon5626
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://github.com/dohyeon5626/github-html-preview-extension
Langues Prises en Charge 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"
            ]
        }
    ]
}