Excalisave

Save your excalidraw drawings.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "Excalisave",
  "version": "2.0.0",
  "short_name": "Excalisave",
  "description": "Save your excalidraw drawings.",
  "icons": {
    "16": "assets/icons/16.png",
    "48": "assets/icons/48.png",
    "128": "assets/icons/128.png"
  },
  "homepage_url": "https://github.com/atharvakadlag/excalisave",
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "scripting",
    "unlimitedStorage"
  ],
  "author": "atharvakadlag",
  "browser_specific_settings": {
    "gecko": {
      "id": "excalisave@atharvakadlag.github.io"
    }
  },
  "action": {
    "default_title": "Excalisave",
    "default_popup": "popup.html"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "mac": "Command+Shift+E"
      }
    }
  },
  "background": {
    "scripts": [
      "js/background.bundle.js"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*"
      ],
      "matches": [
        "https://excalidraw.com/*"
      ]
    }
  ],
  "host_permissions": [
    "https://excalidraw.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://excalidraw.com/*"
      ],
      "js": [
        "libs/react.production.min.js",
        "libs/react-dom.production.min.js",
        "libs/excalidraw.production.min.js",
        "js/content-scripts/listenDrawingUpdates.bundle.js"
      ]
    }
  ]
}