Light JavaScript Playground

A standalone HTML/CSS/JavaScript playground

Cos'è Light JavaScript Playground?

Light JavaScript Playground è un'estensione di Chrome sviluppata da Jørgen NYSTAD, e la sua funzione principale è "A standalone HTML/CSS/JavaScript playground".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Light JavaScript Playground

Scarica i file di estensione Light JavaScript Playground 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

                        Light JavaScript Playground is a live editor and playground for testing HTML/CSS/JS ideas in Google Chrome.

lightjs does not rely on a backend. It does not send the HTML/CSS/JS content to any external server (unless exported to jsfiddle.net).

lightjs does, however, rely on external libraries, if used. Various CDNs are used to load libraries like jQuery, Bootstrap and others.

lightjs is designed to be lightweight, not feature rich, while still providing some flexibility in development.

lightjs allows for direct conversion into a JS fiddle on jsfiddle.net (we are not affiliated).

lightjs is open source and available on GitHub: https://github.com/jorgenys/lightjs                    

Informazioni di Base sull'Estensione

Nome Light JavaScript Playground Light JavaScript Playground
ID dnbhlnmdfibonmpgckakiehcdjppnmjd
URL Ufficiale https://chromewebstore.google.com/detail/light-javascript-playgrou/dnbhlnmdfibonmpgckakiehcdjppnmjd
Descrizione A standalone HTML/CSS/JavaScript playground
Dimensione del File 336 KB
Conteggio Installazioni 649
Versione Corrente 1.0
Ultimo Aggiornamento 2014-01-30
Data di Pubblicazione 2014-01-30
Valutazione 4.20/5 Totale 5 Valutazioni
Sviluppatore Jørgen NYSTAD
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/jorgenys/lightjs
URL della Pagina di Aiuto https://github.com/jorgenys/lightjs/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Light JavaScript Playground",
    "version": "1.0",
    "description": "A standalone HTML\/CSS\/JavaScript playground",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "unlimitedStorage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        },
        "default_title": "Launch JavaScript Playground"
    },
    "content_security_policy": "script-src 'self'; object-src 'self'"
}