Light JavaScript Playground

A standalone HTML/CSS/JavaScript playground

Light JavaScript Playground란 무엇입니까?

Light JavaScript Playground은(는) Jørgen NYSTAD에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A standalone HTML/CSS/JavaScript playground"입니다.

확장 프로그램 스크린샷

screenshot

Light JavaScript Playground 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Light JavaScript Playground Light JavaScript Playground
ID dnbhlnmdfibonmpgckakiehcdjppnmjd
공식 URL https://chromewebstore.google.com/detail/light-javascript-playgrou/dnbhlnmdfibonmpgckakiehcdjppnmjd
설명 A standalone HTML/CSS/JavaScript playground
파일 크기 336 KB
설치 횟수 649
현재 버전 1.0
최근 업데이트 2014-01-30
출시 날짜 2014-01-30
평점 4.20/5 총 5 개의 평점
개발자 Jørgen NYSTAD
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/jorgenys/lightjs
도움말 페이지 URL https://github.com/jorgenys/lightjs/issues
지원되는 언어 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'"
}