Google Keep Presentation Mode

Adds a simple presentation mode to Google Keep

Qu'est-ce que Google Keep Presentation Mode ?

Google Keep Presentation Mode est une extension Chrome développée par Clemens Prerovsky, et sa fonction principale est "Adds a simple presentation mode to Google Keep".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Google Keep Presentation Mode

Téléchargez les fichiers d'extension Google Keep Presentation Mode au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Google Keep Presentation Mode Google Keep Presentation Mode
ID bgbaahbnakeoohgbijglamgadoanojbf
URL Officiel https://chromewebstore.google.com/detail/google-keep-presentation/bgbaahbnakeoohgbijglamgadoanojbf
Description Adds a simple presentation mode to Google Keep
Taille du Fichier 37.68 KB
Nombre d'Installations 705
Version Actuelle 0.0.1
Dernière Mise à Jour 2018-03-16
Date de Publication 2018-03-16
Évaluation 5.00/5 Total 2 Évaluations
Développeur Clemens Prerovsky
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}