Markdown Slides

View markdown files as a slideshow with one click

Markdown Slides란 무엇입니까?

Markdown Slides은(는) chrisdavies에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "View markdown files as a slideshow with one click"입니다.

확장 프로그램 스크린샷

screenshot

Markdown Slides 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Present a markdown file as a slideshow. Powered by Remarkjs. For more details on Remark markdown files, see:

http://remarkjs.com/ 

https://github.com/chrisdavies/markdown-slides/

Happy presenting!                    

확장 프로그램 기본 정보

이름 Markdown Slides Markdown Slides
ID ndpkdbdonkcnidnnmdgphflfcojnhoaa
공식 URL https://chromewebstore.google.com/detail/markdown-slides/ndpkdbdonkcnidnnmdgphflfcojnhoaa
설명 View markdown files as a slideshow with one click
파일 크기 156 KB
설치 횟수 203
현재 버전 1.0
최근 업데이트 2015-04-28
출시 날짜 2015-04-27
평점 5.00/5 총 2 개의 평점
개발자 chrisdavies
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/chrisdavies/markdown-slides
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Markdown Slides",
    "description": "View markdown files as a slideshow with one click",
    "homepage_url": "https:\/\/github.com\/chrisdavies\/markdown-slides",
    "version": "1.0",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon.png"
    },
    "permissions": [
        "tabs",
        "*:\/\/*\/*.md",
        "background"
    ],
    "page_action": {
        "default_icon": "icon.png",
        "default_title": "View as slideshow"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*.md",
                "file:\/\/\/*\/*.md"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "css\/*.css",
        "fonts\/*",
        "js\/*"
    ],
    "commands": {
        "view-as-slideshow": {
            "suggested_key": {
                "default": "Ctrl+Shift+M"
            },
            "description": "View as slideshow"
        }
    },
    "offline_enabled": true,
    "manifest_version": 2
}