Markdown Slides

View markdown files as a slideshow with one click

What is Markdown Slides?

Markdown Slides is a Chrome extension developed by chrisdavies, and its main feature is "View markdown files as a slideshow with one click".

Extension Screenshots

screenshot

Download Markdown Slides Extension CRX File

Download Markdown Slides 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

                        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!                    

Extension Basic Information

Name Markdown Slides Markdown Slides
ID ndpkdbdonkcnidnnmdgphflfcojnhoaa
Official URL https://chromewebstore.google.com/detail/markdown-slides/ndpkdbdonkcnidnnmdgphflfcojnhoaa
Description View markdown files as a slideshow with one click
File Size 156 KB
Installation Count 203
Current Version 1.0
Last Updated 2015-04-28
Publish Date 2015-04-27
Rating 5.00/5 Total 2 Ratings
Developer chrisdavies
Payment Type free
Extension Website https://github.com/chrisdavies/markdown-slides
Supported Languages 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
}