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'est-ce que Better Stack Exchange ?
Better Stack Exchange est une extension Chrome développée par Titus Woo, et sa fonction principale est "A revamped text editor that supports markdown, indentation, and more. A cleaner user interface that doesn't get in your way.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Better Stack Exchange
Téléchargez les fichiers d'extension Better Stack Exchange au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | ohgloaohphplfbdcbkoobcmbjopjbhnl |
URL Officiel | https://chrome.google.com/webstore/detail/better-stack-exchange/ohgloaohphplfbdcbkoobcmbjopjbhnl |
Description | A revamped text editor that supports markdown, indentation, and more. A cleaner user interface that doesn't get in your way. |
Taille du Fichier | 97.18 KB |
Nombre d'Installations | 48 |
Version Actuelle | 0.0.5 |
Dernière Mise à Jour | 2016-06-21 |
Date de Publication | 2016-06-21 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | Titus Woo |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } ] } |