Light JavaScript Playground
A standalone HTML/CSS/JavaScript playground
O que é Light JavaScript Playground?
Light JavaScript Playground é uma extensão do Chrome desenvolvida por Jørgen NYSTAD, e sua principal característica é "A standalone HTML/CSS/JavaScript playground".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Light JavaScript Playground
Baixe arquivos de extensão Light JavaScript Playground no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Light JavaScript Playground |
ID | dnbhlnmdfibonmpgckakiehcdjppnmjd |
URL Oficial | https://chromewebstore.google.com/detail/light-javascript-playgrou/dnbhlnmdfibonmpgckakiehcdjppnmjd |
Descrição | A standalone HTML/CSS/JavaScript playground |
Tamanho do Arquivo | 336 KB |
Contagem de Instalações | 649 |
Versão Atual | 1.0 |
Última Atualização | 2014-01-30 |
Data de Publicação | 2014-01-30 |
Classificação | 4.20/5 Total de 5 Avaliações |
Desenvolvedor | Jørgen NYSTAD |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/jorgenys/lightjs |
URL da Página de Ajuda | https://github.com/jorgenys/lightjs/issues |
Idiomas Suportados | 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'" } |