Stackoverflow Code Beautify

Beautify and format selected code as needed.

Stackoverflow Code Beautify란 무엇입니까?

Stackoverflow Code Beautify은(는) Making Odd Edit Studios에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Beautify and format selected code as needed."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Stackoverflow Code Beautify 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Format and beautify selected code when editing questions and answers on Stackoverflow (or anywhere else for that matter). 

This extension is not limited to the Stackoverflow web site - I just came up with the idea while reviewing on Stackoverflow - so it can be used anywhere.

If you have any feature requests or found any bugs, just post a comment.

Based on jsbeautifier.org.                    

확장 프로그램 기본 정보

이름 Stackoverflow Code Beautify Stackoverflow Code Beautify
ID pljeafjjkkbacckkollfejkciddacmeb
공식 URL https://chrome.google.com/webstore/detail/stackoverflow-code-beauti/pljeafjjkkbacckkollfejkciddacmeb
설명 Beautify and format selected code as needed.
파일 크기 187 KB
설치 횟수 1,000
현재 버전 1.0
최근 업데이트 2014-03-12
출시 날짜 2014-03-12
평점 3.95/5 총 19 개의 평점
개발자 Making Odd Edit Studios
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Stackoverflow Code Beautify",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Beautify and format selected code as needed.",
    "minimum_chrome_version": "14",
    "offline_enabled": true,
    "options_page": "options.html",
    "icons": {
        "16": "Content\/Images\/CodeBeautify16.png",
        "48": "Content\/Images\/CodeBeautify48.png",
        "128": "Content\/Images\/CodeBeautify128.png",
        "256": "Content\/Images\/CodeBeautify256.png"
    },
    "web_accessible_resources": [
        "Content\/Images\/CodeBeautify48.png"
    ],
    "permissions": [
        "",
        "tabs",
        "contextMenus",
        "notifications"
    ],
    "background": {
        "scripts": [
            "Scripts\/background.js",
            "Scripts\/beautify.js",
            "Scripts\/beautify-css.js",
            "Scripts\/beautify-html.js"
        ]
    },
    "browser_action": {
        "default_icon": "Content\/Images\/CodeBeautify19.png",
        "default_title": "Beautify selection"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "Scripts\/content_script.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}