TypeScript Editor

An extension allows you to run TypeScript or JavaScript Code in browser.

TypeScript Editor란 무엇입니까?

TypeScript Editor은(는) Developer Runbin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension allows you to run TypeScript or JavaScript Code in browser."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

TypeScript Editor 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Why you need it?
1. Have you ever wanted to write TypeScript code in browser directly?
2. Have you ever wanted to test your code in browser? And you're still using console panel to write JavaScript code? Do you want better experience?

Feature:
1. Directly run TypeScript code in browser. This extension helps you automatically transform TypeScript code into JavaScript, thus you can see the result in browser.
2. Great experience just like writing in vscode, eg. same highlight style, same code completion.
3. Allows you to search npm package from cdn.jsdelivr.net, or inject specific npm package url, then you can use the global variable exported by the package.

Usage:
1.How to use?
For mac users: press cmd+s to run the code.
For windows users: press ctrl+s to run the code.
2. Where to see output?
Console Panel

Language:
TypeScript, JavaScript                    

확장 프로그램 기본 정보

이름 TypeScript Editor TypeScript Editor
ID amljndfnogpalkfjcfohnepgnhfcpamk
공식 URL https://chromewebstore.google.com/detail/typescript-editor/amljndfnogpalkfjcfohnepgnhfcpamk
설명 An extension allows you to run TypeScript or JavaScript Code in browser.
파일 크기 2.87 MB
설치 횟수 512
현재 버전 1.0.1
최근 업데이트 2021-12-28
출시 날짜 2021-12-04
평점 5.00/5 총 2 개의 평점
개발자 Developer Runbin
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/RunbinPeng/chrome-typescript-editor
도움말 페이지 URL https://github.com/RunbinPeng/chrome-typescript-editor
개인정보 보호 정책 페이지 URL https://sites.google.com/view/typescript-editor
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TypeScript Editor",
    "version": "1.0.1",
    "description": "An extension allows you to run TypeScript or JavaScript Code in browser.",
    "permissions": [
        "https:\/\/www.npmjs.com\/*"
    ],
    "icons": {
        "16": "logo.png",
        "32": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "devtools_page": "devtools.html",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}