Stackoverflow Code Beautify

Beautify and format selected code as needed.

O que é Stackoverflow Code Beautify?

Stackoverflow Code Beautify é uma extensão do Chrome desenvolvida por Making Odd Edit Studios, e sua principal característica é "Beautify and format selected code as needed.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Stackoverflow Code Beautify

Baixe arquivos de extensão Stackoverflow Code Beautify no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Stackoverflow Code Beautify Stackoverflow Code Beautify
ID pljeafjjkkbacckkollfejkciddacmeb
URL Oficial https://chrome.google.com/webstore/detail/stackoverflow-code-beauti/pljeafjjkkbacckkollfejkciddacmeb
Descrição Beautify and format selected code as needed.
Tamanho do Arquivo 187 KB
Contagem de Instalações 1,000
Versão Atual 1.0
Última Atualização 2014-03-12
Data de Publicação 2014-03-12
Classificação 3.95/5 Total de 19 Avaliações
Desenvolvedor Making Odd Edit Studios
Tipo de Pagamento free
Idiomas Suportados 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'"
}