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

下载Stackoverflow Code Beautify扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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'"
}