Markdown Sticky Notes

Markdown Sticky Notes web extension

Markdown Sticky Notes क्या है?

Markdown Sticky Notes qiweiyang द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Markdown Sticky Notes web extension"।

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

screenshot
screenshot
screenshot

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

crx प्रारूप में Markdown Sticky Notes एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        A *Markdown* Sticky Note that can be used in web pages.

Features:

- Create new notes by clicking on the extension icon
- Auto save content and position in the web page
- Nice markdown editor & result
- Draggable, resizable
- Multiple editor theme and font styles
- Shortcut: alt + m (mac: option + m)
- SPA support


(If there are bugs/feature suggestions, please email me or raise an issue on GitHub)                    

एक्सटेंशन की मूल जानकारी

नाम Markdown Sticky Notes Markdown Sticky Notes
ID aiakblgmlabokilgljkglggnpflljdgp
आधिकारिक URL https://chromewebstore.google.com/detail/markdown-sticky-notes/aiakblgmlabokilgljkglggnpflljdgp
विवरण Markdown Sticky Notes web extension
फ़ाइल का आकार 1.3 MB
स्थापना संख्या 415
वर्तमान संस्करण 0.2.1
अंतिम अपडेट 2024-03-01
प्रकाशन तिथि 2020-05-09
रेटिंग 4.33/5 कुल 6 रेटिंग्स
डेवलपर qiweiyang
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/qiweiii/markdown-sticky-notes
सहायता पृष्ठ URL https://github.com/qiweiii/markdown-sticky-notes
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Markdown Sticky Notes",
    "description": "Markdown Sticky Notes web extension",
    "version": "0.2.1",
    "short_name": "markdown-sticky-notes",
    "icons": {
        "16": "icon\/notes16.png",
        "32": "icon\/notes32.png",
        "64": "icon\/notes64.png",
        "128": "icon\/notes128.png"
    },
    "commands": {
        "create-note": {
            "suggested_key": {
                "default": "Alt+M"
            },
            "description": "Run \"create-note\" on the current page."
        }
    },
    "action": [],
    "permissions": [
        "storage",
        "tabs"
    ],
    "host_permissions": [
        ""
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "fonts\/**\/*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "content-scripts\/content.css"
            ],
            "js": [
                "content-scripts\/content.js"
            ]
        }
    ]
}