Markdown阅读器

Markdown文件预览工具

What is Markdown阅读器?

Markdown阅读器 is a Chrome extension developed by feirpri, and its main feature is "Markdown文件预览工具".

Extension Screenshots

screenshot
screenshot

Download Markdown阅读器 Extension CRX File

Download Markdown阅读器 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

                        对本地 .md 文件自动显示为易于阅读的模式
单击扩展图标可临时禁用或启用此扩展
支持代码高亮及代码语言类型显示 ([highlight.js][highlight.js])
无需任何配置, 简单易用
自动生成目录                    

Extension Basic Information

Name Markdown阅读器 Markdown阅读器
ID lpfleledablfbdekjbhcejmagnjoihgn
Official URL https://chromewebstore.google.com/detail/markdown%E9%98%85%E8%AF%BB%E5%99%A8/lpfleledablfbdekjbhcejmagnjoihgn
Description Markdown文件预览工具
File Size 248 KB
Installation Count 4,000
Current Version 0.0.2
Last Updated 2017-03-17
Publish Date 2017-03-16
Rating 3.67/5 Total 15 Ratings
Developer feirpri
Email [email protected]
Payment Type free
Supported Languages zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Markdown\u9605\u8bfb\u5668",
    "version": "0.0.2",
    "manifest_version": 2,
    "description": "Markdown\u6587\u4ef6\u9884\u89c8\u5de5\u5177",
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "24": "images\/icon24.png",
            "32": "images\/icon32.png",
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "file:\/\/*\/*.md"
            ],
            "js": [
                "utils.js",
                "content-script.js"
            ],
            "css": [
                "css\/layout.css",
                "css\/code-styles\/github.css",
                "css\/markdown.css"
            ]
        }
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "vender.js",
            "utils.js",
            "bg.js",
            "md.js"
        ]
    },
    "permissions": [
        "tabs",
        "file:\/\/\/*"
    ]
}