Github Html Preview

Take a look at the HTML on the GitHub Repository.

Vad är Github Html Preview?

Github Html Preview är en Chrome-tillägg utvecklad av dohyeon5626, och dess huvudfunktion är "Take a look at the HTML on the GitHub Repository.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Github Html Preview-förlängningens CRX-fil

Ladda ner Github Html Preview-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Github Html Preview Github Html Preview
ID pmpjligbgooljdpakhophgddmcipglna
Officiell webbadress https://chromewebstore.google.com/detail/github-html-preview/pmpjligbgooljdpakhophgddmcipglna
Beskrivning Take a look at the HTML on the GitHub Repository.
Filstorlek 45.41 KB
Antal Installationer 571
Aktuell Version 2.0
Senast Uppdaterad 2023-05-13
Publiceringsdatum 2022-12-30
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare dohyeon5626
E-post [email protected]
Betalningssätt free
Hjälpsida URL https://github.com/dohyeon5626/github-html-preview-extension
Stödda Språk 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"
            ]
        }
    ]
}