HackMD-it

HackMD-it

HackMD browser integration extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "0.4.3",
  "default_locale": "en",
  "homepage_url": "https://github.com/hackmdio/hackmd-it-issues",
  "manifest_version": 2,
  "minimum_chrome_version": "62",
  "icons": {
    "16": "images/icon.png",
    "48": "images/[email protected]",
    "128": "images/[email protected]"
  },
  "applications": {
    "gecko": {
      "id": "{c6d86c3c-1cea-4172-9125-b094f8322c3d}"
    }
  },
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "webNavigation",
    "notifications",
    "https://github.com/*",
    "https://gitlab.com/*",
    "https://hackmd.io/*"
  ],
  "optional_permissions": [
    "http://*/",
    "https://*/"
  ],
  "browser_action": {
    "browser_style": true,
    "default_icon": "images/logo.png",
    "default_title": "HackMD-it!",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "*.js",
    "images/*"
  ],
  "options_page": "option.html",
  "options_ui": {
    "page": "option.html",
    "browser_style": false,
    "open_in_tab": true
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+K",
        "mac": "MacCtrl+Shift+K"
      }
    }
  }
}