Slashy - Custom commands for Notion

Slashy - Custom commands for Notion

Record, draw, and create custom commands without leaving Notion.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Slashy - Custom commands for Notion",
  "description": "Record, draw, and create custom commands without leaving Notion.",
  "version": "1.0.4",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "assets/16.png",
    "48": "assets/48.png",
    "128": "assets/128.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.notion.so/*"
      ],
      "run_at": "document_end",
      "js": [
        "sval.min.js",
        "fabric.min.js",
        "jquery.js",
        "content.js"
      ],
      "css": [
        "content.css"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "content.html",
    "newtab.html",
    "assets/*",
    "force.js"
  ],
  "permissions": [
    "clipboardWrite",
    "storage"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{c4b2c42a-f5ff-44c0-8372-bfea13001f19}"
    }
  }
}