Google Keep Presentation Mode

Adds a simple presentation mode to Google Keep

¿Qué es Google Keep Presentation Mode?

Google Keep Presentation Mode es una extensión de Chrome desarrollada por Clemens Prerovsky, y su función principal es "Adds a simple presentation mode to Google Keep".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Google Keep Presentation Mode

Descarga archivos de extensión Google Keep Presentation Mode en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        This extension adds a very simplistic presentation mode to Google Keep, akin to Evernote. It will allow you to present your ideas in a slick, simple design. Use markdown syntax to style your content. Write [IMG] to embed an image that you attached to your note. The first occurrence of [IMG] will be replace with the first image from your note, the second occurrence with the second image and so on.

To start a presentation use the white "play" button floating right above the note you're editing. Currently you will need to switch to fullscreen mode yourself when presenting.

Note: this extension is still in development.                    

Información Básica de la Extensión

Nombre Google Keep Presentation Mode Google Keep Presentation Mode
ID bgbaahbnakeoohgbijglamgadoanojbf
URL Oficial https://chromewebstore.google.com/detail/google-keep-presentation/bgbaahbnakeoohgbijglamgadoanojbf
Descripción Adds a simple presentation mode to Google Keep
Tamaño del Archivo 37.68 KB
Cantidad de Instalaciones 705
Versión Actual 0.0.1
Última Actualización 2018-03-16
Fecha de Publicación 2018-03-16
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador Clemens Prerovsky
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Keep Presentation Mode",
    "short_name": "Presentation Mode",
    "manifest_version": 2,
    "version": "0.0.1",
    "description": "Adds a simple presentation mode to Google Keep",
    "author": "Clemens Prerovsky ",
    "permissions": [
        "http:\/\/keep.google.com\/",
        "https:\/\/keep.google.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/keep.google.com\/*"
            ],
            "js": [
                "app.js",
                "showdown.min.js"
            ],
            "css": [
                "app.css"
            ]
        }
    ]
}