html2md

Convert Selected HTML to Markdown

Cos'è html2md?

html2md è un'estensione di Chrome sviluppata da https://powerfulyang.com, e la sua funzione principale è "Convert Selected HTML to Markdown".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione html2md

Scarica i file di estensione html2md in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Easy-to-use keyboard shortcut: Ctrl + Alt (Windows/Linux) or Command + Option (Mac).
v1.0.0 Convert selected HTML to Markdown (GFM).
v1.0.1 Support for converting KaTeX to Markdown.
v1.0.2 Slim package.
v1.0.3 Some exceptions are compatible.
v1.0.4 Utilize absolute URLs instead of relative URLs for images.

GitHub: https://github.com/powerfulyang/html2md                    

Informazioni di Base sull'Estensione

Nome html2md html2md
ID nhphileonjdmmeijobgabiajckecckjj
URL Ufficiale https://chromewebstore.google.com/detail/html2md/nhphileonjdmmeijobgabiajckecckjj
Descrizione Convert Selected HTML to Markdown
Dimensione del File 153 KB
Conteggio Installazioni 25
Versione Corrente 1.0.4
Ultimo Aggiornamento 2023-08-29
Data di Pubblicazione 2023-05-11
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://powerfulyang.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://powerfulyang.com
URL della Pagina di Aiuto https://powerfulyang.com
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionName__",
    "author": "powerfulyang",
    "version": "1.0.4",
    "manifest_version": 3,
    "minimum_chrome_version": "110",
    "default_locale": "en",
    "description": "__MSG_extensionDescription__",
    "icons": {
        "128": "assets\/images\/icon-128.png"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+T"
            }
        }
    },
    "background": {
        "service_worker": "js\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "all_frames": true,
            "js": [
                "js\/content_script.js",
                "js\/vendors.js"
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_title": "__MSG_extensionActionTitle__",
        "default_popup": "popup.html",
        "default_icon": {
            "128": "assets\/images\/icon-128.png"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "host_permissions": [
        ""
    ]
}