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文件

下載Light JavaScript Playground擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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'"
}