Mark-It

Simple Markdown Note Taker

什麼是Mark-It?

Mark-It是由Matt開發的Chrome擴展程式,該擴展的主要功能是“Simple Markdown Note Taker”。

擴展截圖

screenshot
screenshot
screenshot

下載Mark-It擴展crx文件

下載Mark-It擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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 Mark-It
ID pfodanikhbfnlkdaoeppjiijfgpeaglm
官方網址 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"
    }
}