Markdown Sticky Notes

Markdown Sticky Notes web extension

¿Qué es Markdown Sticky Notes?

Markdown Sticky Notes es una extensión de Chrome desarrollada por qiweiyang, y su función principal es "Markdown Sticky Notes web extension".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Markdown Sticky Notes

Descarga archivos de extensión Markdown Sticky Notes en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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)                    

Información Básica de la Extensión

Nombre Markdown Sticky Notes Markdown Sticky Notes
ID aiakblgmlabokilgljkglggnpflljdgp
URL Oficial https://chromewebstore.google.com/detail/markdown-sticky-notes/aiakblgmlabokilgljkglggnpflljdgp
Descripción Markdown Sticky Notes web extension
Tamaño del Archivo 1.3 MB
Cantidad de Instalaciones 415
Versión Actual 0.2.1
Última Actualización 2024-03-01
Fecha de Publicación 2020-05-09
Calificación 4.33/5 Total de 6 Calificaciones
Desarrollador qiweiyang
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/qiweiii/markdown-sticky-notes
URL de la Página de Ayuda https://github.com/qiweiii/markdown-sticky-notes
Idiomas Soportados 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"
            ]
        }
    ]
}