Google Keep Presentation Mode

Adds a simple presentation mode to Google Keep

Google Keep Presentation Mode là gì?

Google Keep Presentation Mode là một tiện ích mở rộng Chrome được phát triển bởi Clemens Prerovsky, và tính năng chính của nó là "Adds a simple presentation mode to Google Keep".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Google Keep Presentation Mode

Tải xuống các tệp mở rộng Google Keep Presentation Mode dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Google Keep Presentation Mode Google Keep Presentation Mode
ID bgbaahbnakeoohgbijglamgadoanojbf
URL Chính Thức https://chromewebstore.google.com/detail/google-keep-presentation/bgbaahbnakeoohgbijglamgadoanojbf
Mô tả Adds a simple presentation mode to Google Keep
Kích Thước Tệp 37.68 KB
Số Lần Cài Đặt 705
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2018-03-16
Ngày Phát Hành 2018-03-16
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Clemens Prerovsky
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}