Stackoverflow Code Beautify

Beautify and format selected code as needed.

What is Stackoverflow Code Beautify?

Stackoverflow Code Beautify is a Chrome extension developed by Making Odd Edit Studios, and its main feature is "Beautify and format selected code as needed.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Stackoverflow Code Beautify Extension CRX File

Download Stackoverflow Code Beautify extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Stackoverflow Code Beautify Stackoverflow Code Beautify
ID pljeafjjkkbacckkollfejkciddacmeb
Official URL https://chrome.google.com/webstore/detail/stackoverflow-code-beauti/pljeafjjkkbacckkollfejkciddacmeb
Description Beautify and format selected code as needed.
File Size 187 KB
Installation Count 1,000
Current Version 1.0
Last Updated 2014-03-12
Publish Date 2014-03-12
Rating 3.95/5 Total 19 Ratings
Developer Making Odd Edit Studios
Payment Type free
Supported Languages 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'"
}