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.”。
擴展截圖
下載TypeScript Editor擴展crx文件
下載TypeScript Editor擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | amljndfnogpalkfjcfohnepgnhfcpamk |
官方網址 | 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'" } |