QuickPad: fast Markdown notepad

An in-browser Markdown notepad. Optimize for writing experience. Free, plus your data doesn't leave you computer

QuickPad: fast Markdown notepad란 무엇입니까?

QuickPad: fast Markdown notepad은(는) Huy Vu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An in-browser Markdown notepad. Optimize for writing experience. Free, plus your data doesn't leave you computer"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

QuickPad: fast Markdown notepad 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        ≡ Why do I build this extension 🤔
When reading cool stuffs on the net, I often want to take some notes, but opening my noting applications such as Notion/Obsidian takes much time. So I built this extension to quickly jot down my idea, then later copy to whatever noting systems.


≡ What it does really well 💪
- Fast & Clean
- Markdown support
- Writing should feel pleasant (sth like Notion editor)
- Your data stays in your computer


≡ What it *will* do well in the future ⚙️
- Pasting image into the editor
- Searching
- Exporting notes
- Data backup


≡ Feedbacks 💙
If you have any feedbacks or suggestions, I'm really happy to hear that, feel free to ping me at:
https://learned-bearberry-202.notion.site/QuickPad-feedbacks-6b814d8684614c958de172d0d1948c6d                    

확장 프로그램 기본 정보

이름 QuickPad: fast Markdown notepad QuickPad: fast Markdown notepad
ID hmpekcomffccbkcfmflnbifbndekfnam
공식 URL https://chromewebstore.google.com/detail/quickpad-fast-markdown-no/hmpekcomffccbkcfmflnbifbndekfnam
설명 An in-browser Markdown notepad. Optimize for writing experience. Free, plus your data doesn't leave you computer
파일 크기 631 KB
설치 횟수 56
현재 버전 1.0
최근 업데이트 2022-05-17
출시 날짜 2022-05-17
평점 5.00/5 총 2 개의 평점
개발자 Huy Vu
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "QuickPad: fast Markdown notepad",
    "description": "An in-browser Markdown notepad. Optimize for writing experience. Free, plus your data doesn't leave you computer",
    "version": "1.0",
    "manifest_version": 3,
    "permissions": [
        "activeTab",
        "storage",
        "unlimitedStorage"
    ],
    "action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png"
        },
        "default_title": "QuickPad: make notes on any page"
    },
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "quicknote_styles.css"
            ],
            "js": [
                "open_sidebar.js"
            ]
        }
    ],
    "background": {
        "service_worker": "command_center.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "index.html",
                "\/assets\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}