GitHub Code-blocks to TypeScript Playground

When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock

Was ist GitHub Code-blocks to TypeScript Playground?

GitHub Code-blocks to TypeScript Playground ist eine Chrome-Erweiterung, die von orta.therox entwickelt wurde, und ihr Hauptmerkmal ist "When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock".

Erweiterungsscreenshots

screenshot

GitHub Code-blocks to TypeScript Playground-Erweiterungs-CRX-Datei herunterladen

Laden Sie GitHub Code-blocks to TypeScript Playground-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension adds links to the TypeScript playground throughout GitHub. It's very minimal on work it does, so it won't slow down your browsing.                    

Grundlegende Informationen zur Erweiterung

Name GitHub Code-blocks to TypeScript Playground GitHub Code-blocks to TypeScript Playground
ID ghfbedglkdlaefbpdammobffadckmjaa
Offizielle URL https://chromewebstore.google.com/detail/github-code-blocks-to-typ/ghfbedglkdlaefbpdammobffadckmjaa
Beschreibung When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock
Dateigröße 8.91 KB
Installationsanzahl 36
Aktuelle Version 0.1
Letztes Update 2019-06-19
Veröffentlichungsdatum 2019-06-19
Entwickler orta.therox
Zahlungsart free
Erweiterungswebsite https://github.com/orta/ts-playgrounds-github
Hilfeseite URL https://github.com/orta/ts-playgrounds-github
Unterstützte Sprachen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Code-blocks to TypeScript Playground",
    "description": "When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock",
    "version": "0.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "js\/add-ts-playground-links.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/github.com\/*"
    ]
}