GitHub Code-blocks to TypeScript Playground

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

Hvad er GitHub Code-blocks to TypeScript Playground?

GitHub Code-blocks to TypeScript Playground er en Chrome-udvidelse udviklet af orta.therox, og dens hovedfunktion er "When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock".

Udvidelsesskærmbilleder

screenshot

Download GitHub Code-blocks to TypeScript Playground-udvidelses-CRX-fil

Download GitHub Code-blocks to TypeScript Playground-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn GitHub Code-blocks to TypeScript Playground GitHub Code-blocks to TypeScript Playground
ID ghfbedglkdlaefbpdammobffadckmjaa
Officiel URL https://chromewebstore.google.com/detail/github-code-blocks-to-typ/ghfbedglkdlaefbpdammobffadckmjaa
Beskrivelse When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock
Filstørrelse 8.91 KB
Antal Installationer 36
Nuværende Version 0.1
Senest Opdateret 2019-06-19
Udgivelsesdato 2019-06-19
Udvikler orta.therox
Betalingsmetode free
Udvidelseswebsted https://github.com/orta/ts-playgrounds-github
Hjælpeside-URL https://github.com/orta/ts-playgrounds-github
Understøttede Sprog 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\/*"
    ]
}