ZHUJIAN

ZHUJIAN

A simple web page to markdown tool

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "version": "1.0.1",
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "icons": {
    "16": "img/icon.png",
    "48": "img/icon.png",
    "128": "img/icon.png"
  },
  "permissions": [
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "js/jquery.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/icon.png"
  },
  "content_scripts": [
    {
      "js": [
        "js/jquery.js",
        "js/turndown.js",
        "js/notify.js",
        "js/html2canvas.js",
        "js/mousetrap.js",
        "js/FileSaver.js",
        "js/dom-to-image.js",
        "js/content.js"
      ],
      "css": [
        "css/notify.css"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "homepage_url": "https://www.ganymedenil.com"
}