GitHub Code-blocks to TypeScript Playground

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

GitHub Code-blocks to TypeScript Playgroundとは何ですか?

GitHub Code-blocks to TypeScript Playgroundはorta.theroxによって開発されたChromeの拡張機能で、その主な機能は「When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock」です。

拡張機能のスクリーンショット

screenshot

GitHub Code-blocks to TypeScript Playground拡張機能のCRXファイルをダウンロード

GitHub Code-blocks to TypeScript Playground拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 GitHub Code-blocks to TypeScript Playground GitHub Code-blocks to TypeScript Playground
ID ghfbedglkdlaefbpdammobffadckmjaa
公式URL https://chromewebstore.google.com/detail/github-code-blocks-to-typ/ghfbedglkdlaefbpdammobffadckmjaa
説明 When browsing GitHub, this extension links to the TypeScript playground from every TypeScript-flavoured codeblock
ファイルサイズ 8.91 KB
インストール数 36
現在のバージョン 0.1
最終更新日 2019-06-19
公開日 2019-06-19
開発者 orta.therox
支払い方法 free
拡張機能のウェブサイト https://github.com/orta/ts-playgrounds-github
ヘルプページのURL https://github.com/orta/ts-playgrounds-github
対応言語 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\/*"
    ]
}