Markdown for Google Keep™

Write and view Google Keep notes in Markdown.

Markdown for Google Keep™란 무엇입니까?

Markdown for Google Keep™은(는) https://kellenvu.github.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Write and view Google Keep notes in Markdown."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Markdown for Google Keep™ 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Elevate your note-taking with Markdown for Google Keep™!

This extension provides the power of Markdown formatting right within Google Keep. Say goodbye to the limitations of plain text notes. Using Markdown for Google Keep™, transform your notes into beautifully styled documents with traditional Markdown syntax. A single click toggles the extension, rendering your jotted-down concepts into a formatted masterpiece, perfect for organizing your thoughts or preparing sharable documents. Need to revise? Click again, and you're back to editing mode, making it seamless to update your thoughts and ideas.

Features:
• Write in Markdown and view styled notes in Google Keep
• One-click conversion from Markdown to styled text, using a custom button located conveniently in the note toolbar
• Assign an extension shortcut to toggle between view and edit mode effortlessly

Note: This extension does not apply Markdown formatting to note titles nor checklists.                    

확장 프로그램 기본 정보

이름 Markdown for Google Keep™ Markdown for Google Keep™
ID memepciffhlkcckkmkbaccpmmfjjpdfg
공식 URL https://chromewebstore.google.com/detail/markdown-for-google-keep/memepciffhlkcckkmkbaccpmmfjjpdfg
설명 Write and view Google Keep notes in Markdown.
파일 크기 37.68 KB
설치 횟수 492
현재 버전 1.0.0
최근 업데이트 2023-11-14
출시 날짜 2023-11-14
평점 3.83/5 총 6 개의 평점
개발자 https://kellenvu.github.io
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Markdown for Google Keep\u2122",
    "version": "1.0.0",
    "icons": {
        "16": "assets\/icon-16.png",
        "32": "assets\/icon-32.png",
        "48": "assets\/icon-48.png",
        "128": "assets\/icon-128.png"
    },
    "description": "Write and view Google Keep notes in Markdown.",
    "action": {
        "default_icon": {
            "16": "assets\/active-16.png",
            "32": "assets\/active-32.png",
            "48": "assets\/active-48.png",
            "128": "assets\/active-128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "css": [
                "markdown.css"
            ],
            "js": [
                "marked.min.js",
                "content.js"
            ],
            "matches": [
                "*:\/\/keep.google.com\/*"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/keep.google.com\/*"
    ],
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/active-48.png",
                "assets\/inactive-48.png"
            ],
            "matches": [
                "*:\/\/keep.google.com\/*"
            ]
        }
    ]
}