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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}