Light JavaScript Playground

A standalone HTML/CSS/JavaScript playground

Light JavaScript Playground là gì?

Light JavaScript Playground là một tiện ích mở rộng Chrome được phát triển bởi Jørgen NYSTAD, và tính năng chính của nó là "A standalone HTML/CSS/JavaScript playground".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Light JavaScript Playground

Tải xuống các tệp mở rộng Light JavaScript Playground dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Light JavaScript Playground Light JavaScript Playground
ID dnbhlnmdfibonmpgckakiehcdjppnmjd
URL Chính Thức https://chromewebstore.google.com/detail/light-javascript-playgrou/dnbhlnmdfibonmpgckakiehcdjppnmjd
Mô tả A standalone HTML/CSS/JavaScript playground
Kích Thước Tệp 336 KB
Số Lần Cài Đặt 649
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2014-01-30
Ngày Phát Hành 2014-01-30
Đánh Giá 4.20/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Jørgen NYSTAD
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/jorgenys/lightjs
URL Trang Trợ Giúp https://github.com/jorgenys/lightjs/issues
Ngôn Ngữ Được Hỗ Trợ 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'"
}