Markdown Slides
View markdown files as a slideshow with one click
Wat is Markdown Slides?
Markdown Slides is een Chrome-extensie ontwikkeld door chrisdavies, en de belangrijkste functie is "View markdown files as a slideshow with one click".
Extensie Screenshots
Download het CRX-bestand van de extensie Markdown Slides
Download Markdown Slides-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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!
Basisinformatie over de Extensie
Naam | Markdown Slides |
ID | ndpkdbdonkcnidnnmdgphflfcojnhoaa |
Officiële URL | https://chromewebstore.google.com/detail/markdown-slides/ndpkdbdonkcnidnnmdgphflfcojnhoaa |
Beschrijving | View markdown files as a slideshow with one click |
Bestandsgrootte | 156 KB |
Aantal Installaties | 203 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2015-04-28 |
Publicatiedatum | 2015-04-27 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | chrisdavies |
Betalingswijze | free |
Extensiewebsite | https://github.com/chrisdavies/markdown-slides |
Ondersteunde Talen | 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 } |