html2md

Convert Selected HTML to Markdown

What is html2md?

html2md is a Chrome extension developed by https://powerfulyang.com, and its main feature is "Convert Selected HTML to Markdown".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download html2md Extension CRX File

Download html2md extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name html2md html2md
ID nhphileonjdmmeijobgabiajckecckjj
Official URL https://chromewebstore.google.com/detail/html2md/nhphileonjdmmeijobgabiajckecckjj
Description Convert Selected HTML to Markdown
File Size 153 KB
Installation Count 25
Current Version 1.0.4
Last Updated 2023-08-29
Publish Date 2023-05-11
Rating 5.00/5 Total 1 Ratings
Developer https://powerfulyang.com
Email [email protected]
Payment Type free
Extension Website https://powerfulyang.com
Help Page URL https://powerfulyang.com
Supported Languages 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": [
        ""
    ]
}