GitHub Code-blocks to TypeScript Playground

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

Co to jest GitHub Code-blocks to TypeScript Playground?

GitHub Code-blocks to TypeScript Playground to rozszerzenie Chrome opracowane przez orta.therox, a jego główną funkcją jest „When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia GitHub Code-blocks to TypeScript Playground

Pobierz pliki rozszerzeń GitHub Code-blocks to TypeScript Playground w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa GitHub Code-blocks to TypeScript Playground GitHub Code-blocks to TypeScript Playground
ID ghfbedglkdlaefbpdammobffadckmjaa
Oficjalny URL https://chromewebstore.google.com/detail/github-code-blocks-to-typ/ghfbedglkdlaefbpdammobffadckmjaa
Opis When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock
Rozmiar pliku 8.91 KB
Liczba instalacji 36
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2019-06-19
Data Publikacji 2019-06-19
Deweloper orta.therox
Typ Płatności free
Strona Rozszerzenia https://github.com/orta/ts-playgrounds-github
Adres URL Strony Pomocy https://github.com/orta/ts-playgrounds-github
Obsługiwane Języki 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\/*"
    ]
}