Markdown Sticky Notes

Markdown Sticky Notes web extension

Markdown Sticky Notes là gì?

Markdown Sticky Notes là một tiện ích mở rộng Chrome được phát triển bởi qiweiyang, và tính năng chính của nó là "Markdown Sticky Notes web extension".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Markdown Sticky Notes

Tải xuống các tệp mở rộng Markdown Sticky Notes dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Markdown Sticky Notes Markdown Sticky Notes
ID aiakblgmlabokilgljkglggnpflljdgp
URL Chính Thức https://chromewebstore.google.com/detail/markdown-sticky-notes/aiakblgmlabokilgljkglggnpflljdgp
Mô tả Markdown Sticky Notes web extension
Kích Thước Tệp 1.3 MB
Số Lần Cài Đặt 415
Phiên Bản Hiện Tại 0.2.1
Cập Nhật Lần Cuối 2024-03-01
Ngày Phát Hành 2020-05-09
Đánh Giá 4.33/5 Tổng số 6 Đánh Giá
Nhà Phát Triển qiweiyang
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/qiweiii/markdown-sticky-notes
URL Trang Trợ Giúp https://github.com/qiweiii/markdown-sticky-notes
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}