Markdown Sticky Notes

Markdown Sticky Notes web extension

Что такое Markdown Sticky Notes?

Markdown Sticky Notes - это расширение Chrome, разработанное qiweiyang, и его основная функция - "Markdown Sticky Notes web extension".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Markdown Sticky Notes

Скачайте файлы расширений Markdown Sticky Notes в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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"
            ]
        }
    ]
}