xhub

Extend GitHub pages with support for LaTeX, plotly, etc.

xhub란 무엇입니까?

xhub은(는) Nico Schlömer에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extend GitHub pages with support for LaTeX, plotly, etc."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

xhub 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        xhub is a browser extension that lets you use various add-ons on GitHub READMEs, issues, wikis etc. The add-ons currently are

* KaTeX for LaTeX mathematics
* Chart.js for charts
* Plotly for graphing
* embed YouTube videos

See https://github.com/nschloe/xhub for more details.                    

확장 프로그램 기본 정보

이름 xhub xhub
ID anidddebgkllnnnnjfkmjcaallemhjee
공식 URL https://chromewebstore.google.com/detail/xhub/anidddebgkllnnnnjfkmjcaallemhjee
설명 Extend GitHub pages with support for LaTeX, plotly, etc.
파일 크기 1.59 MB
설치 횟수 449
현재 버전 0.4.7
최근 업데이트 2023-08-22
출시 날짜 2021-06-15
개발자 Nico Schlömer
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/nschloe/xhub
도움말 페이지 URL https://github.com/nschloe/xhub/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "xhub",
    "version": "0.4.7",
    "description": "Extend GitHub pages with support for LaTeX, plotly, etc.",
    "permissions": [
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/github.com\/*"
    ],
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "content_script_chartjs.js",
                "content_script_math.js",
                "content_script_plotly.js",
                "content_script_youtube_embed.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "assets\/icon-color16.png",
        "32": "assets\/icon-color32.png",
        "48": "assets\/icon-color48.png",
        "128": "assets\/icon-color128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "fonts\/*"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "assets\/icon-gray16.png",
            "32": "assets\/icon-gray32.png",
            "48": "assets\/icon-gray48.png",
            "128": "assets\/icon-gray128.png"
        }
    }
}