Github Html Preview

Take a look at the HTML on the GitHub Repository.

Github Html Preview là gì?

Github Html Preview là một tiện ích mở rộng Chrome được phát triển bởi dohyeon5626, và tính năng chính của nó là "Take a look at the HTML on the GitHub Repository.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Github Html Preview

Tải xuống các tệp mở rộng Github Html Preview dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Github Html Preview Github Html Preview
ID pmpjligbgooljdpakhophgddmcipglna
URL Chính Thức https://chromewebstore.google.com/detail/github-html-preview/pmpjligbgooljdpakhophgddmcipglna
Mô tả Take a look at the HTML on the GitHub Repository.
Kích Thước Tệp 45.41 KB
Số Lần Cài Đặt 571
Phiên Bản Hiện Tại 2.0
Cập Nhật Lần Cuối 2023-05-13
Ngày Phát Hành 2022-12-30
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển dohyeon5626
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/dohyeon5626/github-html-preview-extension
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}