OctoEdit
Syntax Highlighting mini-editor for GitHub.com
Wat is OctoEdit?
OctoEdit is een Chrome-extensie ontwikkeld door Andrew Levine, en de belangrijkste functie is "Syntax Highlighting mini-editor for GitHub.com".
Extensie Screenshots
Download het CRX-bestand van de extensie OctoEdit
Download OctoEdit-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | OctoEdit |
ID | ecnglinljpjkbgmdpeiglonddahpbkeb |
Officiële URL | https://chromewebstore.google.com/detail/octoedit/ecnglinljpjkbgmdpeiglonddahpbkeb |
Beschrijving | Syntax Highlighting mini-editor for GitHub.com |
Bestandsgrootte | 1.16 MB |
Aantal Installaties | 140 |
Huidige Versie | 0.5.1 |
Laatst Bijgewerkt | 2016-05-27 |
Publicatiedatum | 2016-05-26 |
Ontwikkelaar | Andrew Levine |
Betalingswijze | free |
Extensiewebsite | https://github.com/DrewML/OctoEdit |
Help Pagina-URL | https://github.com/DrewML/OctoEdit/issues |
Ondersteunde Talen | 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" ] } |