TypeScript-Console

In browser TypeScript compiler and console

TypeScript-Consoleとは何ですか?

TypeScript-ConsoleはMendy Bergerによって開発されたChromeの拡張機能で、その主な機能は「In browser TypeScript compiler and console」です。

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

screenshot
screenshot

TypeScript-Console拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        TS-Console is an extension for developers wanting to test their TypeScript code directly in the browser without having to compile after each and every change.

The extension also gives you the ability to write and execute code directly in the browser via a dedicated TypeScript console.

Note: Do not use TypeScript directly in the browser when in production, this will result in much slower code. And even worse, users that don't have the extension won't be able to use your web-app properly. Rather compile your code to JavaScript using the TypeScript Compiler.                    

拡張機能の基本情報

名前 TypeScript-Console TypeScript-Console
ID omklacjbengpcndogglbpjfifmiagmgp
公式URL https://chromewebstore.google.com/detail/typescript-console/omklacjbengpcndogglbpjfifmiagmgp
説明 In browser TypeScript compiler and console
ファイルサイズ 1.77 MB
インストール数 1,316
現在のバージョン 0.4
最終更新日 2020-03-17
公開日 2020-03-16
評価 1.62/5 合計 13 レビュー
開発者 Mendy Berger
支払い方法 free
ヘルプページのURL https://github.com/MendyBerger/TypeScript-Console
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TypeScript-Console",
    "version": "0.4",
    "manifest_version": 2,
    "description": "In browser TypeScript compiler and console",
    "minimum_chrome_version": "10.0",
    "devtools_page": "ex.html",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "typescript.min.js",
            "background-script.js"
        ],
        "persistent": false
    },
    "permissions": [
        "",
        "tabs",
        "webNavigation"
    ]
}