xhub

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

xhubคืออะไร?

xhub เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Nico Schlömer และคุณลักษณะหลักของมันคือ "Extend GitHub pages with support for LaTeX, plotly, etc."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย xhub

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        }
    }
}