MarkView

MarkView

View markdown file in Chrome.

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__",
  "short_name": "__MSG_shortName__",
  "version": "2.6.5",
  "description": "__MSG_extDesc__",
  "icons": {
    "16": "images/favicon.png",
    "48": "images/favicon.png",
    "128": "images/favicon.png"
  },
  "permissions": [
    "<all_urls>",
    "tabs",
    "activeTab",
    "downloads",
    "storage",
    "https://markview.herokuapp.com/api/v1/*",
    "https://markview.herokuapp.com/oauth/token"
  ],
  "browser_action": {
    "default_icon": "images/favicon.png",
    "default_title": "__MSG_extAction__"
  },
  "options_page": "options.html",
  "background": {
    "scripts": [
      "js/a.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "file:///*/*.md",
        "file://*/*.md",
        "*://*/*.md",
        "*://*/*.markdown",
        "file://*/*.markdown",
        "*://*/*.mdown",
        "file://*/*.mdown",
        "*://*/*.mkdn",
        "file://*/*.mkdn",
        "*://*/*.mkd",
        "file://*/*.mkd",
        "*://*/*.text",
        "file://*/*.text",
        "*://*/*.mdtext",
        "file://*/*.mdtext",
        "*://*/*.mdtxt",
        "file://*/*.mdtxt"
      ],
      "exclude_matches": [
        "*://raw.githubusercontent.com/*"
      ],
      "js": [
        "js/dm.js",
        "js/b.js",
        "js/3.js",
        "js/5.js",
        "js/7.js",
        "js/8.js",
        "js/4.js",
        "js/9.js",
        "js/c.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    "css/*",
    "css/images/*",
    "css/code/*",
    "images/*.png",
    "*.html",
    "vendors/*.css",
    "vendors/bootstrap-3.0.3.min.css",
    "vendors/jquery-ui/jquery-ui-1.10.4.min.css"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://ssl.google-analytics.com; object-src 'self'",
  "default_locale": "en"
}