DEV Community

Discussion on: I had to build my own Markdown Editor because no tool was fast enough for me.

Collapse
 
andrewbrown profile image
Andrew Brown 🇨🇦

Not yet, but its fairly easy to load Chrome Extensions into Electron:

Just have to download the extension and then use the Electron API addDevToolsExtension

const path = require('path')
const os = require('os')

BrowserWindow.addDevToolsExtension(
   path.join(os.homedir(), '/Library/Application Support/Google/Chrome/Default/Extensions/fmkadmapgofadopljbjfkapdkoienihi/4.3.0_0')
)

electronjs.org/docs/tutorial/devto...

Its a pain point for myself as well. I'm just in the middle of publishing a 10 hour course, so something that show up on Fast-Author in a week or two