Markdown for Google Keep™
Write and view Google Keep notes in Markdown.
Co je Markdown for Google Keep™?
Markdown for Google Keep™ je rozšíření Chrome vyvinuté https://kellenvu.github.io, a jeho hlavní funkcí je „Write and view Google Keep notes in Markdown.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Markdown for Google Keep™
Stáhněte si soubory rozšíření Markdown for Google Keep™ ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Markdown for Google Keep™ |
ID | memepciffhlkcckkmkbaccpmmfjjpdfg |
Oficiální URL | https://chromewebstore.google.com/detail/markdown-for-google-keep/memepciffhlkcckkmkbaccpmmfjjpdfg |
Popis | Write and view Google Keep notes in Markdown. |
Velikost souboru | 37.68 KB |
Počet instalací | 492 |
Aktuální Verze | 1.0.0 |
Poslední Aktualizace | 2023-11-14 |
Datum Vydání | 2023-11-14 |
Hodnocení | 3.83/5 Celkem 6 Hodnocení |
Vývojář | https://kellenvu.github.io |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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\/*" ] } ] } |