Google Keep - Full Screen Edit

Makes note editing take up the full browser window

Google Keep - Full Screen Edit란 무엇입니까?

Google Keep - Full Screen Edit은(는) https://chrisputnam.info에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Makes note editing take up the full browser window"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Google Keep - Full Screen Edit 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}