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ファイルをダウンロード

xhub拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
        }
    }
}