OctoEdit
Syntax Highlighting mini-editor for GitHub.com
Qu'est-ce que OctoEdit ?
OctoEdit est une extension Chrome développée par Andrew Levine, et sa fonction principale est "Syntax Highlighting mini-editor for GitHub.com".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension OctoEdit
Téléchargez les fichiers d'extension OctoEdit 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
Adds a new tab to the comment edit area in GitHub, providing Markdown syntax highlighting and tabbing behavior. Huge thanks to CodeMirror and Marijn Haverbeke for providing a free, MIT-licensed editor.
Informations de Base sur l'Extension
Nom | OctoEdit |
ID | ecnglinljpjkbgmdpeiglonddahpbkeb |
URL Officiel | https://chromewebstore.google.com/detail/octoedit/ecnglinljpjkbgmdpeiglonddahpbkeb |
Description | Syntax Highlighting mini-editor for GitHub.com |
Taille du Fichier | 1.16 MB |
Nombre d'Installations | 140 |
Version Actuelle | 0.5.1 |
Dernière Mise à Jour | 2016-05-27 |
Date de Publication | 2016-05-26 |
Développeur | Andrew Levine |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/DrewML/OctoEdit |
URL de la Page d'Aide | https://github.com/DrewML/OctoEdit/issues |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "OctoEdit", "version": "0.5.1", "description": "Syntax Highlighting mini-editor for GitHub.com", "manifest_version": 2, "permissions": [ "storage" ], "options_page": "options.html", "options_ui": { "page": "options.html", "chrome_style": true }, "content_scripts": [ { "matches": [ "*:\/\/github.com\/*" ], "js": [ "content-script.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ "pagenav-listener.js" ] } |