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
} | |