Google Keep Presentation Mode

Adds a simple presentation mode to Google Keep

Was ist Google Keep Presentation Mode?

Google Keep Presentation Mode ist eine Chrome-Erweiterung, die von Clemens Prerovsky entwickelt wurde, und ihr Hauptmerkmal ist "Adds a simple presentation mode to Google Keep".

Erweiterungsscreenshots

screenshot

Google Keep Presentation Mode-Erweiterungs-CRX-Datei herunterladen

Laden Sie Google Keep Presentation Mode-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Google Keep Presentation Mode Google Keep Presentation Mode
ID bgbaahbnakeoohgbijglamgadoanojbf
Offizielle URL https://chromewebstore.google.com/detail/google-keep-presentation/bgbaahbnakeoohgbijglamgadoanojbf
Beschreibung Adds a simple presentation mode to Google Keep
Dateigröße 37.68 KB
Installationsanzahl 705
Aktuelle Version 0.0.1
Letztes Update 2018-03-16
Veröffentlichungsdatum 2018-03-16
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Clemens Prerovsky
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}