Light JavaScript Playground

A standalone HTML/CSS/JavaScript playground

¿Qué es Light JavaScript Playground?

Light JavaScript Playground es una extensión de Chrome desarrollada por Jørgen NYSTAD, y su función principal es "A standalone HTML/CSS/JavaScript playground".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Light JavaScript Playground

Descarga archivos de extensión Light JavaScript Playground en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Light JavaScript Playground Light JavaScript Playground
ID dnbhlnmdfibonmpgckakiehcdjppnmjd
URL Oficial https://chromewebstore.google.com/detail/light-javascript-playgrou/dnbhlnmdfibonmpgckakiehcdjppnmjd
Descripción A standalone HTML/CSS/JavaScript playground
Tamaño del Archivo 336 KB
Cantidad de Instalaciones 649
Versión Actual 1.0
Última Actualización 2014-01-30
Fecha de Publicación 2014-01-30
Calificación 4.20/5 Total de 5 Calificaciones
Desarrollador Jørgen NYSTAD
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/jorgenys/lightjs
URL de la Página de Ayuda https://github.com/jorgenys/lightjs/issues
Idiomas Soportados 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'"
}