Markdown File Reader

Makdown File Reader is a tool that supports multiple themes and auto detecting and transferring markdown to html.

Что такое Markdown File Reader?

Markdown File Reader - это расширение Chrome, разработанное leewind19841209, и его основная функция - "Makdown File Reader is a tool that supports multiple themes and auto detecting and transferring markdown to html.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Markdown File Reader

Скачайте файлы расширений Markdown File Reader в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Get source code at https://github.com/leewind/leewind-markdown-md

Features:

+ Transfer markdown file to html file in Chrome
+ Select different code themes
+ Auto detect the makrdown files and transfer files                    

Основная информация о расширении

Название Markdown File Reader Markdown File Reader
ID afcmlpnpmdljjlcpmlcnlokilglejfga
Официальный URL https://chromewebstore.google.com/detail/markdown-file-reader/afcmlpnpmdljjlcpmlcnlokilglejfga
Описание Makdown File Reader is a tool that supports multiple themes and auto detecting and transferring markdown to html.
Размер файла 62.25 KB
Количество установок 714
Текущая Версия 0.2
Последнее Обновление 2013-12-27
Дата публикации 2013-12-27
Рейтинг 3.00/5 Всего 2 оценок
Разработчик leewind19841209
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Markdown File Reader",
    "description": "Makdown File Reader is a tool that supports multiple themes and auto detecting and transferring markdown to html.",
    "version": "0.2",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "optional_permissions": [
        "file:\/\/\/*\/*"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "common\/base.js",
            "background.js"
        ]
    },
    "icons": {
        "16": "icon\/markdown_16x16.png",
        "48": "icon\/markdown_48x48.png",
        "128": "icon\/markdown_128x128.png"
    },
    "browser_action": {
        "default_title": "Markdown File Reader",
        "default_icon": "icon\/markdown_128x128.png",
        "default_popup": "pop.html"
    },
    "manifest_version": 2,
    "offline_enabled": true
}