Google Keep Presentation Mode

Adds a simple presentation mode to Google Keep

Hvad er Google Keep Presentation Mode?

Google Keep Presentation Mode er en Chrome-udvidelse udviklet af Clemens Prerovsky, og dens hovedfunktion er "Adds a simple presentation mode to Google Keep".

Udvidelsesskærmbilleder

screenshot

Download Google Keep Presentation Mode-udvidelses-CRX-fil

Download Google Keep Presentation Mode-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Google Keep Presentation Mode Google Keep Presentation Mode
ID bgbaahbnakeoohgbijglamgadoanojbf
Officiel URL https://chromewebstore.google.com/detail/google-keep-presentation/bgbaahbnakeoohgbijglamgadoanojbf
Beskrivelse Adds a simple presentation mode to Google Keep
Filstørrelse 37.68 KB
Antal Installationer 705
Nuværende Version 0.0.1
Senest Opdateret 2018-03-16
Udgivelsesdato 2018-03-16
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler Clemens Prerovsky
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
            ]
        }
    ]
}