Google Keep Presentation Mode

Adds a simple presentation mode to Google Keep

O que é Google Keep Presentation Mode?

Google Keep Presentation Mode é uma extensão do Chrome desenvolvida por Clemens Prerovsky, e sua principal característica é "Adds a simple presentation mode to Google Keep".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Google Keep Presentation Mode

Baixe arquivos de extensão Google Keep Presentation Mode no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Google Keep Presentation Mode Google Keep Presentation Mode
ID bgbaahbnakeoohgbijglamgadoanojbf
URL Oficial https://chromewebstore.google.com/detail/google-keep-presentation/bgbaahbnakeoohgbijglamgadoanojbf
Descrição Adds a simple presentation mode to Google Keep
Tamanho do Arquivo 37.68 KB
Contagem de Instalações 705
Versão Atual 0.0.1
Última Atualização 2018-03-16
Data de Publicação 2018-03-16
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Clemens Prerovsky
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}