xhub

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

Qu'est-ce que xhub ?

xhub est une extension Chrome développée par Nico Schlömer, et sa fonction principale est "Extend GitHub pages with support for LaTeX, plotly, etc.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension xhub

Téléchargez les fichiers d'extension xhub au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom xhub xhub
ID anidddebgkllnnnnjfkmjcaallemhjee
URL Officiel https://chromewebstore.google.com/detail/xhub/anidddebgkllnnnnjfkmjcaallemhjee
Description Extend GitHub pages with support for LaTeX, plotly, etc.
Taille du Fichier 1.59 MB
Nombre d'Installations 449
Version Actuelle 0.4.7
Dernière Mise à Jour 2023-08-22
Date de Publication 2021-06-15
Développeur Nico Schlömer
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/nschloe/xhub
URL de la Page d'Aide https://github.com/nschloe/xhub/issues
Langues Prises en Charge 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"
        }
    }
}