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

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

擴展使用說明

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