xhub
Extend GitHub pages with support for LaTeX, plotly, etc.
xhub là gì?
xhub là một tiện ích mở rộng Chrome được phát triển bởi Nico Schlömer, và tính năng chính của nó là "Extend GitHub pages with support for LaTeX, plotly, etc.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng xhub
Tải xuống các tệp mở rộng xhub 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
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | xhub |
ID | anidddebgkllnnnnjfkmjcaallemhjee |
URL Chính Thức | https://chromewebstore.google.com/detail/xhub/anidddebgkllnnnnjfkmjcaallemhjee |
Mô tả | Extend GitHub pages with support for LaTeX, plotly, etc. |
Kích Thước Tệp | 1.59 MB |
Số Lần Cài Đặt | 449 |
Phiên Bản Hiện Tại | 0.4.7 |
Cập Nhật Lần Cuối | 2023-08-22 |
Ngày Phát Hành | 2021-06-15 |
Nhà Phát Triển | Nico Schlömer |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/nschloe/xhub |
URL Trang Trợ Giúp | https://github.com/nschloe/xhub/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } } } |