GitHub Code-blocks to TypeScript Playground

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

O que é GitHub Code-blocks to TypeScript Playground?

GitHub Code-blocks to TypeScript Playground é uma extensão do Chrome desenvolvida por orta.therox, e sua principal característica é "When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão GitHub Code-blocks to TypeScript Playground

Baixe arquivos de extensão GitHub Code-blocks to TypeScript Playground no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome GitHub Code-blocks to TypeScript Playground GitHub Code-blocks to TypeScript Playground
ID ghfbedglkdlaefbpdammobffadckmjaa
URL Oficial https://chromewebstore.google.com/detail/github-code-blocks-to-typ/ghfbedglkdlaefbpdammobffadckmjaa
Descrição When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock
Tamanho do Arquivo 8.91 KB
Contagem de Instalações 36
Versão Atual 0.1
Última Atualização 2019-06-19
Data de Publicação 2019-06-19
Desenvolvedor orta.therox
Tipo de Pagamento free
Site da Extensão https://github.com/orta/ts-playgrounds-github
URL da Página de Ajuda https://github.com/orta/ts-playgrounds-github
Idiomas Suportados 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\/*"
    ]
}