HTML to Markdown

HTML to Markdown

Translate a selected HTML text to equivalent markdown format

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "HTML to Markdown",
  "version": "2.0",
  "description": "Translate a selected HTML text to equivalent markdown format",
  "icons": {
    "16": "/images/16.png",
    "32": "/images/32.png",
    "48": "/images/48.png",
    "128": "/images/128.png"
  },
  "background": {
    "service_worker": "service-worker.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "Translate a selected HTML text to equivalent markdown format"
  },
  "options_page": "options.html",
  "permissions": [
    "activeTab",
    "scripting",
    "clipboardRead",
    "clipboardWrite",
    "contextMenus",
    "storage"
  ]
}