MDN documentation linter

MDN documentation linter

Checks MDN docs against some tests and cleanup tasks while editing

Merlin
Additional files are visible only to premium users

manifest.json


{
  "applications": {
    "gecko": {
      "id": "{826e8996-b3c2-11e5-9f22-ba0be0483c18}",
      "strict_min_version": "54.0a1"
    }
  },
  "background": {
    "scripts": [
      "main.js",
      "proxy.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://developer.mozilla.org/*"
      ],
      "js": [
        "purify.min.js",
        "worker.js"
      ]
    }
  ],
  "sidebar_action": {
    "default_title": "__MSG_sidebarTitle__",
    "default_panel": "sidebar/panel.html"
  },
  "default_locale": "en-US",
  "description": "__MSG_extensionDescription__",
  "manifest_version": 2,
  "name": "MDN Doc Linter",
  "permissions": [
    "*://developer.mozilla.org/*",
    "activeTab",
    "webNavigation"
  ],
  "page_action": {
    "browser_style": true,
    "default_icon": "img/page_action_32.png",
    "default_title": "__MSG_pageActionTitle__"
  },
  "version": "1.0.2resigned1"
}