TypeScript-Console

In browser TypeScript compiler and console

Cos'è TypeScript-Console?

TypeScript-Console è un'estensione di Chrome sviluppata da Mendy Berger, e la sua funzione principale è "In browser TypeScript compiler and console".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione TypeScript-Console

Scarica i file di estensione TypeScript-Console in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome TypeScript-Console TypeScript-Console
ID omklacjbengpcndogglbpjfifmiagmgp
URL Ufficiale https://chromewebstore.google.com/detail/typescript-console/omklacjbengpcndogglbpjfifmiagmgp
Descrizione In browser TypeScript compiler and console
Dimensione del File 1.77 MB
Conteggio Installazioni 1,316
Versione Corrente 0.4
Ultimo Aggiornamento 2020-03-17
Data di Pubblicazione 2020-03-16
Valutazione 1.62/5 Totale 13 Valutazioni
Sviluppatore Mendy Berger
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/MendyBerger/TypeScript-Console
Lingue Supportate 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"
    ]
}