Leetmark

Leetmark

Converts a Leetcode problem page into Github Flavored Markdown

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "minimum_chrome_version": "55",
  "name": "Leetmark",
  "short_name": "Leetmark",
  "description": "Converts a Leetcode problem page into Github Flavored Markdown",
  "version": "0.4.0",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "icons": {
    "512": "leetmark.png"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://*.leetcode.com/problems/*",
        "https://*.leetcode-cn.com/problems/*"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_icon": {
      "512": "leetmark.png"
    },
    "default_title": "Click to generate Markdown from a Leetcode problem page",
    "default_popup": "popup.html"
  },
  "permissions": [
    "https://*.leetcode.com/*",
    "https://*.leetcode-cn.com/*"
  ]
}