Mark-It

Simple Markdown Note Taker

Mark-It क्या है?

Mark-It Matt द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Simple Markdown Note Taker"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Mark-It एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
    }
}