Copy As Markdown

Copy As Markdown

Used to copy the element in current page as markdown format.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "1.1.9",
  "manifest_version": 2,
  "default_locale": "en",
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "images/icon16.png",
    "128": "images/icon128.png"
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "commands": {
    "html2markdown": {
      "suggested_key": {
        "default": "Alt+C",
        "windows": "Alt+C",
        "mac": "Alt+C"
      },
      "description": "Send 'html2markdown' command which is the same with clicking the browser_action icon."
    }
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon19.png",
      "38": "images/icon38.png"
    },
    "default_title": "__MSG_appName__"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "styles/main.css"
      ],
      "js": [
        "scripts/vendor/reMarked.js",
        "scripts/contentscript.js",
        "bower_components/rangy/rangy-core.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "permissions": [
    "*://*/*",
    "clipboardWrite",
    "clipboardRead"
  ]
}