TypeScript-Console

In browser TypeScript compiler and console

TypeScript-Consoleคืออะไร?

TypeScript-Console เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mendy Berger และคุณลักษณะหลักของมันคือ "In browser TypeScript compiler and console"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TypeScript-Console

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
    ]
}