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 clonethe repository to your local machine andcdinto the directory.yarn installto install dependenciesyarn startto 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
distfolder
- Go to
http://google.com/blankand press the keyboard shortcutcmd/ctrl + shift + eto 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
evalof strings as a security policy.