GitHub Code-blocks to TypeScript Playground

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

Cos'è GitHub Code-blocks to TypeScript Playground?

GitHub Code-blocks to TypeScript Playground è un'estensione di Chrome sviluppata da orta.therox, e la sua funzione principale è "When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione GitHub Code-blocks to TypeScript Playground

Scarica i file di estensione GitHub Code-blocks to TypeScript Playground in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome GitHub Code-blocks to TypeScript Playground GitHub Code-blocks to TypeScript Playground
ID ghfbedglkdlaefbpdammobffadckmjaa
URL Ufficiale https://chromewebstore.google.com/detail/github-code-blocks-to-typ/ghfbedglkdlaefbpdammobffadckmjaa
Descrizione When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock
Dimensione del File 8.91 KB
Conteggio Installazioni 36
Versione Corrente 0.1
Ultimo Aggiornamento 2019-06-19
Data di Pubblicazione 2019-06-19
Sviluppatore orta.therox
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/orta/ts-playgrounds-github
URL della Pagina di Aiuto https://github.com/orta/ts-playgrounds-github
Lingue Supportate 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\/*"
    ]
}