JSBeautify for Google Chrome™

When you view a JavaScript file, Clippy will ask you if you want to format it.

JSBeautify for Google Chrome™ là gì?

JSBeautify for Google Chrome™ là một tiện ích mở rộng Chrome được phát triển bởi Thomas Rix, và tính năng chính của nó là "When you view a JavaScript file, Clippy will ask you if you want to format it.".

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

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng JSBeautify for Google Chrome™

Tải xuống các tệp mở rộng JSBeautify for Google Chrome™ 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

                        This extensions builds off of Einar Lielmanis's JSBeautifier project. If you view a JavaScript file in your browser, you will be given the option to format it. You can set specific formatting settings in the options page of the extension.

The source code for this extension is available on GitHub at https://github.com/rixth/jsbeautify-for-chrome

Logo by Clement Ng, http://clmnt.com                    

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

Tên JSBeautify for Google Chrome™ JSBeautify for Google Chrome™
ID kkioiolcacgoihiiekambdciinadbpfk
URL Chính Thức https://chromewebstore.google.com/detail/jsbeautify-for-google-chr/kkioiolcacgoihiiekambdciinadbpfk
Mô tả When you view a JavaScript file, Clippy will ask you if you want to format it.
Kích Thước Tệp 37.22 KB
Số Lần Cài Đặt 7,691
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2013-01-14
Ngày Phát Hành 2013-01-13
Đánh Giá 3.72/5 Tổng số 53 Đánh Giá
Nhà Phát Triển Thomas Rix
Loại Thanh Toán free
Trang Web Mở Rộng http://rixth.org
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSBeautify for Google Chrome\u2122",
    "version": "1.0.2",
    "manifest_version": 2,
    "description": "When you view a JavaScript file, Clippy will ask you if you want to format it.",
    "icons": {
        "48": "assets\/icon_48.png",
        "128": "assets\/icon_128.png"
    },
    "background": {
        "scripts": [
            "javascripts\/options_server.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*.js*",
                "https:\/\/*\/*.js*",
                "ftp:\/\/*\/*.js*",
                "file:\/\/*\/*.js*"
            ],
            "run_at": "document_end",
            "css": [
                "stylesheets\/application.css"
            ],
            "js": [
                "javascripts\/application.js"
            ]
        }
    ],
    "options_page": "html\/options_page.html",
    "web_accessible_resources": [
        "assets\/its-clippy-motherfuckers.png"
    ]
}