Marker

Marker

Write Beautiful emails with Marker.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Marker",
  "version": "0.1.5",
  "description": "Write Beautiful emails with Marker.",
  "homepage_url": "http://github.com/sonal-raj/Marker",
  "minimum_chrome_version": "6",
  "icons": {
    "16": "common/images/icon16.png",
    "32": "common/images/icon32.png",
    "48": "common/images/icon48.png",
    "128": "common/images/icon128.png",
    "512": "common/images/icon512.png"
  },
  "permissions": [
    "contextMenus",
    "storage"
  ],
  "author": "Sonal Raj",
  "background": {
    "page": "chrome/background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "common/utils.js",
        "common/common-logic.js",
        "common/jsHtmlToText.js",
        "common/marked.js",
        "common/mdh-html-to-text.js",
        "common/marker.js",
        "chrome/contentscript.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "common/images/icon38.png",
    "default_title": "Toggle Marker"
  },
  "options_page": "common/options.html"
}