Mark-It
Simple Markdown Note Taker
Mark-It란 무엇입니까?
Mark-It은(는) Matt에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simple Markdown Note Taker"입니다.
확장 프로그램 스크린샷
Mark-It 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Mark-It lets you quickly take notes in Markdown from within Chrome. With its View and Edit modes, you can see the pretty version of your notes and format with the power of Markdown when you need to. Mark-It replaces your new tab screen with your notes in View mode so you can quickly open and read them. It also provides a toolbar popup that opens your notes in Edit mode to make quick edits without leaving your page. To switch between View and Edit mode, hit Ctrl + Space. You can also open the popup with Ctrl + Shift + F. Your notes are saved automatically! What's new in 1.2.2: Styled dark mode links to be more readable. What's new in 1.2.1: Added dark mode! Packaged fonts with the extension instead of downloading from Google Fonts. What's new in 1.2.0: Overhauled the saving mechanics. Now your notes are saved when you stop typing and they are synced with all other instances of the notes. Added a saving indicator that shows up while the notes are saving. Added a mode switch button to the popup. Other small fixes and tweaks.
확장 프로그램 기본 정보
이름 | Mark-It |
ID | pfodanikhbfnlkdaoeppjiijfgpeaglm |
공식 URL | https://chromewebstore.google.com/detail/mark-it/pfodanikhbfnlkdaoeppjiijfgpeaglm |
설명 | Simple Markdown Note Taker |
파일 크기 | 213 KB |
설치 횟수 | 481 |
현재 버전 | 1.2.2 |
최근 업데이트 | 2021-08-02 |
출시 날짜 | 2019-08-05 |
평점 | 4.14/5 총 7 개의 평점 |
개발자 | Matt |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/mattang687/mark-it |
도움말 페이지 URL | https://github.com/mattang687/mark-it |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Mark-It", "description": "Simple Markdown Note Taker", "version": "1.2.2", "manifest_version": 2, "browser_action": { "default_popup": "notepad\/notepad.html", "default_icon": "icons\/icon-32.png" }, "permissions": [ "storage" ], "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+F", "mac": "MacCtrl+Shift+F" }, "description": "Opens notepad" }, "new_tab_switch_mode": { "suggested_key": { "default": "Ctrl+Space", "mac": "MacCtrl+Space" }, "description": "Sends command to switch between view and edit on new tab page" } }, "chrome_url_overrides": { "newtab": "newTab\/newTab.html" }, "icons": { "32": "icons\/icon-32.png", "48": "icons\/icon-48.png", "96": "icons\/icon-96.png" } } |