JSBeautify for Google Chrome™

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

JSBeautify for Google Chrome™란 무엇입니까?

JSBeautify for Google Chrome™은(는) Thomas Rix에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "When you view a JavaScript file, Clippy will ask you if you want to format it."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

JSBeautify for Google Chrome™ 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 JSBeautify for Google Chrome™ JSBeautify for Google Chrome™
ID kkioiolcacgoihiiekambdciinadbpfk
공식 URL https://chromewebstore.google.com/detail/jsbeautify-for-google-chr/kkioiolcacgoihiiekambdciinadbpfk
설명 When you view a JavaScript file, Clippy will ask you if you want to format it.
파일 크기 37.22 KB
설치 횟수 7,691
현재 버전 1.0.2
최근 업데이트 2013-01-14
출시 날짜 2013-01-13
평점 3.72/5 총 53 개의 평점
개발자 Thomas Rix
결제 유형 free
확장 프로그램 웹 사이트 http://rixth.org
지원되는 언어 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"
    ]
}