Markdown Sticky Notes

Markdown Sticky Notes

Markdown Sticky Notes web extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Markdown Sticky Notes",
  "description": "Markdown Sticky Notes web extension",
  "version": "0.2.3",
  "short_name": "markdown-sticky-notes",
  "icons": {
    "16": "icon/notes16.png",
    "32": "icon/notes32.png",
    "64": "icon/notes64.png",
    "128": "icon/notes128.png"
  },
  "commands": {
    "create-note": {
      "suggested_key": {
        "default": "Alt+M"
      },
      "description": "Run \"create-note\" on the current page."
    }
  },
  "action": {},
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "fonts/**/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "content-scripts/content.css"
      ],
      "js": [
        "content-scripts/content.js"
      ]
    }
  ]
}