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ファイルをダウンロード

QuickPad: fast Markdown notepad拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        ≡ 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
Eメール [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": [
                ""
            ]
        }
    ]
}