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
官方網址 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": [
                ""
            ]
        }
    ]
}