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
电子邮箱 [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"
        }
    }
}