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
官方網址 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"
    ]
}