Markdown Anywhere

Markdown Anywhere

Distraction-free Markdown editing for the web

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "commands": {
    "toggle-editor": {
      "description": "Launch or close the editor",
      "suggested_key": {
        "default": "Alt+Shift+H",
        "mac": "Alt+Shift+H"
      }
    },
    "toggle-preview": {
      "description": "Toggle preview visibility",
      "suggested_key": {
        "default": "Alt+Shift+L",
        "mac": "Alt+Shift+L"
      }
    }
  },
  "content_scripts": [
    {
      "js": [
        "contentscript.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "description": "Distraction-free Markdown editing for the web",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvAC5YzUFHPtNlV5wXppiHwMxDyF3sUQuMpQUhkz4rebWsrckAA5+KuXZJm2d/+JFsB3ROK4nH7Gq//3wK1tzqVo5CDSc1mxwwndRQY2ZaTc/Gp7kuhGq/biwEyN1Ufq21wa+Oq8ZoRrh4KZL6S/pzVheEyli7pBqXZ2RJ/EWkOhGzZOzRRSzqEtvx/zEakBK3p79bWZMBd6AVPs8cMngwTpzCALPy4l1RCDCeMkHfPad7dPag7zRTp2Q2fYKAz3t4qk56ay8HdV9r4KVq2Z5tQYPjdmKEgFrGdhF4xoabH14TkgCOPz8F7/jVi8ysBF/oB17LLiEgvesjYOY8VNAOQIDAQAB",
  "manifest_version": 2,
  "name": "Markdown Anywhere",
  "options_ui": {
    "chrome_style": true,
    "page": "options.html"
  },
  "page_action": {
    "default_icon": "icon48.png"
  },
  "permissions": [
    "storage",
    "http://*/*",
    "https://*/*",
    "unlimitedStorage"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.7.1",
  "web_accessible_resources": [
    "icon128.png",
    "hal.png",
    "notes.html"
  ]
}