GitHub Flavored Markdown 2
Preview GitHub Flavored Markdown in Chrome - Forked from GitHub Flavored Markdown and added support for text/x-markdown
What is GitHub Flavored Markdown 2?
GitHub Flavored Markdown 2 is a Chrome extension developed by xrasadeveloper, and its main feature is "Preview GitHub Flavored Markdown in Chrome - Forked from GitHub Flavored Markdown and added support for text/x-markdown".
Download GitHub Flavored Markdown 2 Extension CRX File
Download GitHub Flavored Markdown 2 extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Preview GitHub Flavored Markdown in Chrome A Markdown previewer featuring GitHub-like style. When previewing local files, this extension also check for file changes and render modifications. 2018/04/27 update remove border when print
Extension Basic Information
Name | |
ID | fifkmhcgoobihkepohlhpkabplahglbo |
Official URL | https://chromewebstore.google.com/detail/github-flavored-markdown/fifkmhcgoobihkepohlhpkabplahglbo |
Description | Preview GitHub Flavored Markdown in Chrome - Forked from GitHub Flavored Markdown and added support for text/x-markdown |
File Size | 166 KB |
Installation Count | 177 |
Current Version | 0.1.0 |
Last Updated | 2018-04-27 |
Publish Date | 2018-04-27 |
Rating | 5.00/5 Total 1 Ratings |
Developer | xrasadeveloper |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ "js\/background.js" ] }, "browser_action": { "default_icon": "icons\/icon-38.png", "default_title": "GitHub Flavored Markdown 2" }, "content_scripts": [ { "js": [ "js\/highlight.js", "js\/marked.js", "js\/plugin.js" ], "matches": [ "http:\/\/*\/*.md", "http:\/\/*\/*.mdown", "http:\/\/*\/*.markdown", "https:\/\/*\/*.md", "https:\/\/*\/*.mdown", "https:\/\/*\/*.markdown", "file:\/\/*\/*.md", "file:\/\/*\/*.mdown", "file:\/\/*\/*.markdown" ] } ], "description": "Preview GitHub Flavored Markdown in Chrome - Forked from GitHub Flavored Markdown and added support for text\/x-markdown", "icons": { "128": "icons\/icon.png", "16": "icons\/icon-16.png", "48": "icons\/icon-48.png" }, "manifest_version": 2, "name": "GitHub Flavored Markdown 2", "permissions": [ "storage" ], "version": "0.1.0", "web_accessible_resources": [ "css\/default.css", "css\/github.css", "css\/markdown.css", "css\/page.css" ] } |