Better Stack Exchange
A revamped text editor that supports markdown, indentation, and more. A cleaner user interface that doesn't get in your way.
Was ist Better Stack Exchange?
Better Stack Exchange ist eine Chrome-Erweiterung, die von Titus Woo entwickelt wurde, und ihr Hauptmerkmal ist "A revamped text editor that supports markdown, indentation, and more. A cleaner user interface that doesn't get in your way.".
Erweiterungsscreenshots
Better Stack Exchange-Erweiterungs-CRX-Datei herunterladen
Laden Sie Better Stack Exchange-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | ohgloaohphplfbdcbkoobcmbjopjbhnl |
Offizielle URL | https://chrome.google.com/webstore/detail/better-stack-exchange/ohgloaohphplfbdcbkoobcmbjopjbhnl |
Beschreibung | A revamped text editor that supports markdown, indentation, and more. A cleaner user interface that doesn't get in your way. |
Dateigröße | 97.18 KB |
Installationsanzahl | 48 |
Aktuelle Version | 0.0.5 |
Letztes Update | 2016-06-21 |
Veröffentlichungsdatum | 2016-06-21 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | Titus Woo |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } ] } |