电子扩展程序:用于电子的Chrome扩展程序API的实现 源码
电子扩展 electron-extensions可让您将Chrome扩展程序API与Electron一起使用。 安装 $ npm install electron-extensions 用法 该库非常易于使用。 您要做的就是将以下代码放入主流程: import { ExtensibleSession } from 'electron-extensions/main' ; import { app } from 'electron' ; const extensions = new ExtensibleSession ( ) ; ( async ( ) => { await app . w
用户评论