Mind The Mark

Mind The Mark

Turns the basic wiki text input into a real code editor!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Mind The Mark",
  "description": "Turns the basic wiki text input into a real code editor!",
  "manifest_version": 2,
  "version": "2",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "background.js",
        "codemirror.js",
        "modes/xml.js",
        "addons/matchtags.js"
      ],
      "css": [
        "codemirror.css",
        "monokai.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "script.js",
    "codemirror.js",
    "codemirror.css",
    "addons/matchtags.js",
    "hint/show-hint.css",
    "hint/show-hint.js",
    "hint/xml-hint.js",
    "hint/html-hint.js"
  ]
}