Better Stack Exchange

A revamped text editor that supports markdown, indentation, and more. A cleaner user interface that doesn't get in your way.

¿Qué es Better Stack Exchange?

Better Stack Exchange es una extensión de Chrome desarrollada por Titus Woo, y su función principal es "A revamped text editor that supports markdown, indentation, and more. A cleaner user interface that doesn't get in your way.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Better Stack Exchange

Descarga archivos de extensión Better Stack Exchange en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Stack Exchange the way it was meant to be!

==================
EDITOR IMPROVEMENTS
(via SimpleMDE and CodeMirror)
==================
* indentation
* code blocks
* markdown
* side-by-side edit & live preview
* sticky toolbar - never scroll around to insert images or snippets!

==================
OTHER IMPROVEMENTS
==================
The UI has been touched up in small ways as well to provide a more minimalist experience. For example, the  yellow "Formatting hints" box is faded out, and the "new question title" doesn't look like an input box anymore.

* sticky top bar
* hide stack exchanges sites list in the footer

==================
WORKS EVERYWHERE
==================
This extension works on all the Stack Exchange sites: Stack Overflow, Super User, Ask Ubuntu, Server Fault, Ask Different, Mathematics, and many more.                    

Información Básica de la Extensión

Nombre Better Stack Exchange Better Stack Exchange
ID ohgloaohphplfbdcbkoobcmbjopjbhnl
URL Oficial https://chrome.google.com/webstore/detail/better-stack-exchange/ohgloaohphplfbdcbkoobcmbjopjbhnl
Descripción A revamped text editor that supports markdown, indentation, and more. A cleaner user interface that doesn't get in your way.
Tamaño del Archivo 97.18 KB
Cantidad de Instalaciones 48
Versión Actual 0.0.5
Última Actualización 2016-06-21
Fecha de Publicación 2016-06-21
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador Titus Woo
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Better Stack Exchange",
    "description": "A revamped text editor that supports markdown, indentation, and more. A cleaner user interface that doesn't get in your way.",
    "version": "0.0.5",
    "author": "Titus Woo",
    "homepage_url": "http:\/\/tituswoo.com",
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "bse-icon.png"
    },
    "options_ui": {
        "page": "options\/index.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.stackoverflow.com\/*",
                "*:\/\/*.serverfault.com\/*",
                "*:\/\/*.superuser.com\/*",
                "*:\/\/*.askubuntu.com\/*",
                "*:\/\/*.stackapps.com\/*",
                "*:\/\/*.mathoverflow.net\/*",
                "*:\/\/*.stackexchange.com\/*"
            ],
            "js": [
                "content\/index.js"
            ]
        }
    ]
}