GitHub Code-blocks to TypeScript Playground

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

Wat is GitHub Code-blocks to TypeScript Playground?

GitHub Code-blocks to TypeScript Playground is een Chrome-extensie ontwikkeld door orta.therox, en de belangrijkste functie is "When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie GitHub Code-blocks to TypeScript Playground

Download GitHub Code-blocks to TypeScript Playground-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam GitHub Code-blocks to TypeScript Playground GitHub Code-blocks to TypeScript Playground
ID ghfbedglkdlaefbpdammobffadckmjaa
Officiële URL https://chromewebstore.google.com/detail/github-code-blocks-to-typ/ghfbedglkdlaefbpdammobffadckmjaa
Beschrijving When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock
Bestandsgrootte 8.91 KB
Aantal Installaties 36
Huidige Versie 0.1
Laatst Bijgewerkt 2019-06-19
Publicatiedatum 2019-06-19
Ontwikkelaar orta.therox
Betalingswijze free
Extensiewebsite https://github.com/orta/ts-playgrounds-github
Help Pagina-URL https://github.com/orta/ts-playgrounds-github
Ondersteunde Talen 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\/*"
    ]
}