Markdown Sticky Notes

Markdown Sticky Notes web extension

Markdown Sticky Notes란 무엇입니까?

Markdown Sticky Notes은(는) qiweiyang에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Markdown Sticky Notes web extension"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Markdown Sticky Notes 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}