Check it out on the chrome web store or as a firefox add on.
A chrome extension which lets you draw on any web page with excalidraw. (Video Demo)
git clone
the repository to your local machine andcd
into the directory.yarn install
to install dependenciesyarn start
to run in dev mode with live reloading- go to
chrome://extensions/
in your chrome browser.- Enable developer mode in the top right
- Select load unpacked
- Load the
dist
folder
- Go to
http://google.com/blank
and press the keyboard shortcutcmd/ctrl + shift + e
to enable the extension.
You can change the extension settings by clicking on the Scrawl icon in the browser toolbar.
Follow the instructions from Local Installation.
Sometimes you will have to reload the app in chrome://extensions/
if live reloading is not working
- src/*: Various parts of the app
- dist: Chrome Extension directory
- dist/js: Generated JavaScript files
- dist/excalidraw-*: Generated excalidraw assets
- Had to build excalidraw without sourcemaps so I can use it in a chrome
extension in dev mode. Chrome extensions don't allow
eval
of strings as a security policy.