Google Keep Presentation Mode

Adds a simple presentation mode to Google Keep

Google Keep Presentation Modeคืออะไร?

Google Keep Presentation Mode เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Clemens Prerovsky และคุณลักษณะหลักของมันคือ "Adds a simple presentation mode to Google Keep"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Keep Presentation Mode

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
            ]
        }
    ]
}