Markdown In Browser
Preview GitHub Flavored Markdown in Chrome - Forked from GitHub Flavored Markdown2
What is Markdown In Browser?
Markdown In Browser is a Chrome extension developed by eytan.sun, and its main feature is "Preview GitHub Flavored Markdown in Chrome - Forked from GitHub Flavored Markdown2".
Extension Screenshots
Download Markdown In Browser Extension CRX File
Download Markdown In Browser 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
This is Markdown Previewer,you can use this tools preview your .md files in local or online Extension Basic Information
| Name | |
| ID | pjdmoijhfgnlmapaakenmbcbkahjmgla |
| Official URL | https://chromewebstore.google.com/detail/markdown-in-browser/pjdmoijhfgnlmapaakenmbcbkahjmgla |
| Description | Preview GitHub Flavored Markdown in Chrome - Forked from GitHub Flavored Markdown2 |
| File Size | 185 KB |
| Installation Count | 91 |
| Current Version | 1.0.1 |
| Last Updated | 2017-07-14 |
| Publish Date | 2017-07-14 |
| Rating | 5.00/5 Total 2 Ratings |
| Developer | eytan.sun |
| [email protected] | |
| Payment Type | free |
| Supported Languages | en-US |
| 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": "Markdown In Browser"
},
"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 Markdown2",
"icons": {
"128": "icons\/icon.png",
"16": "icons\/icon-16.png",
"48": "icons\/icon-48.png"
},
"manifest_version": 2,
"name": "Markdown In Browser",
"permissions": [
"storage"
],
"version": "1.0.1",
"web_accessible_resources": [
"css\/default.css",
"css\/github.css",
"css\/markdown.css",
"css\/page.css"
]
} | |