Google Keep Presentation Mode

Adds a simple presentation mode to Google Keep

什麼是Google Keep Presentation Mode?

Google Keep Presentation Mode是由Clemens Prerovsky開發的Chrome擴展程式,該擴展的主要功能是“Adds a simple presentation mode to Google Keep”。

擴展截圖

screenshot

下載Google Keep Presentation Mode擴展crx文件

下載Google Keep Presentation Mode擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Google Keep Presentation Mode Google Keep Presentation Mode
ID bgbaahbnakeoohgbijglamgadoanojbf
官方網址 https://chromewebstore.google.com/detail/google-keep-presentation/bgbaahbnakeoohgbijglamgadoanojbf
簡介 Adds a simple presentation mode to Google Keep
檔案大小 37.68 KB
安裝次數 705
目前版本 0.0.1
更新時間 2018-03-16
上架時間 2018-03-16
評分 5.00/5 共 2 次評分
開發者 Clemens Prerovsky
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
            ]
        }
    ]
}