Github Html Preview

Take a look at the HTML on the GitHub Repository.

Github Html Preview란 무엇입니까?

Github Html Preview은(는) dohyeon5626에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Take a look at the HTML on the GitHub Repository."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Github Html Preview 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}