Google Keep - Full Screen Edit

Makes note editing take up the full browser window

Google Keep - Full Screen Editคืออะไร?

Google Keep - Full Screen Edit เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://chrisputnam.info และคุณลักษณะหลักของมันคือ "Makes note editing take up the full browser window"

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Keep - Full Screen Edit

ดาวน์โหลดไฟล์ส่วนขยาย Google Keep - Full Screen Edit ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Allows Google Keep editing to use the full browser window.
Allows toggling full screen on and off by clicking on an icon added on the notes.
Remembers full screen status across sessions

View Demo Here: https://cmp.onl/tjXo

WARNING
Use this extension at your own risk. It shouldn't cause problems, but I can't make any guarantees, so back up critical notes.

NOTES
    1. This extension only works with the web version of Google Keep (eg. https://keep.google.com/keep/) - it won't work with the "app" version (the one you might install and launch from your app menu -ie. for offline use).
    2. At this time, clicking the extension icon itself does not toggle anything - click the full-screen icon added to the note itself to toggle full-screen on and off.

INSTRUCTIONS
 - Full-screen is enabled by default when you install the extension.
 - Use the icon at the bottom of the note to toggle full-screen on and off as needed.
 - Your selection will be remembered between notes and sessions.

Like the Extension?
Please rate or review it to help others find it!

Found a bug? Have a suggestion?
Submit it here: https://goo.gl/XumFwG

Source Code:
https://github.com/chrisputnam9/chrome-google-keep-full-screen

Thanks to all who have contributed reviews, suggestions, bug reports, etc. Special thanks to @MartinLichtblau, @tbrodbeck, @JnLlnd

Developer sustenance funding is welcome, but not expected
-   https://ko-fi.com/chrisputnam9
-   https://github.com/sponsors/chrisputnam9                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Google Keep - Full Screen Edit Google Keep - Full Screen Edit
ID kcfmkpjpemonceecfpgamaahlkfpjhdk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/google-keep-full-screen-e/kcfmkpjpemonceecfpgamaahlkfpjhdk
คำอธิบาย Makes note editing take up the full browser window
ขนาดไฟล์ 1.11 MB
จำนวนการติดตั้ง 10,000
เวอร์ชันปัจจุบัน 1.2.3
อัปเดตครั้งล่าสุด 2022-06-21
วันที่เผยแพร่ 2019-07-31
คะแนน 4.61/5 รวมทั้งหมด 61 คะแนน
ผู้พัฒนา https://chrisputnam.info
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://chrisputnam.info/#projects
URL หน้าช่วยเหลือ https://github.com/chrisputnam9/chrome-google-keep-full-screen/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Keep - Full Screen Edit",
    "short_name": "Google Keep Full Screen",
    "description": "Makes note editing take up the full browser window",
    "homepage_url": "https:\/\/github.com\/chrisputnam9\/chrome-google-keep-full-screen",
    "version": "1.2.3",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/keep.google.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/keep.google.com\/*"
            ],
            "css": [
                "src\/styles.css"
            ],
            "js": [
                "src\/script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 3
}