Github Html Preview

Take a look at the HTML on the GitHub Repository.

Τι είναι το Github Html Preview;

Το Github Html Preview είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον dohyeon5626, και η κύρια λειτουργία του είναι "Take a look at the HTML on the GitHub Repository.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Github Html Preview

Λήψη αρχείων επέκτασης Github Html Preview σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Github Html Preview Github Html Preview
ID pmpjligbgooljdpakhophgddmcipglna
Επίσημο URL https://chromewebstore.google.com/detail/github-html-preview/pmpjligbgooljdpakhophgddmcipglna
Περιγραφή Take a look at the HTML on the GitHub Repository.
Μέγεθος Αρχείου 45.41 KB
Αριθμός Εγκαταστάσεων 571
Τρέχουσα Έκδοση 2.0
Τελευταία Ενημέρωση 2023-05-13
Ημερομηνία Δημοσίευσης 2022-12-30
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής dohyeon5626
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/dohyeon5626/github-html-preview-extension
Υποστηριζόμενες Γλώσσες 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"
            ]
        }
    ]
}