Light JavaScript Playground
A standalone HTML/CSS/JavaScript playground
Wat is Light JavaScript Playground?
Light JavaScript Playground is een Chrome-extensie ontwikkeld door Jørgen NYSTAD, en de belangrijkste functie is "A standalone HTML/CSS/JavaScript playground".
Extensie Screenshots
Download het CRX-bestand van de extensie Light JavaScript Playground
Download Light JavaScript Playground-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Light JavaScript Playground |
ID | dnbhlnmdfibonmpgckakiehcdjppnmjd |
Officiële URL | https://chromewebstore.google.com/detail/light-javascript-playgrou/dnbhlnmdfibonmpgckakiehcdjppnmjd |
Beschrijving | A standalone HTML/CSS/JavaScript playground |
Bestandsgrootte | 336 KB |
Aantal Installaties | 649 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2014-01-30 |
Publicatiedatum | 2014-01-30 |
Beoordeling | 4.20/5 Totaal 5 Beoordelingen |
Ontwikkelaar | Jørgen NYSTAD |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/jorgenys/lightjs |
Help Pagina-URL | https://github.com/jorgenys/lightjs/issues |
Ondersteunde Talen | 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'" } |