TypeScript Editor
An extension allows you to run TypeScript or JavaScript Code in browser.
TypeScript Editorคืออะไร?
TypeScript Editor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Developer Runbin และคุณลักษณะหลักของมันคือ "An extension allows you to run TypeScript or JavaScript Code in browser."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TypeScript Editor
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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'" } |