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
公式URL 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
Eメール [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"
            ]
        }
    ]
}