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”。
扩展截图
下载Markdown Slides扩展crx文件
下载Markdown Slides扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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! 扩展基本信息
| 名称 | |
| 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
} | |