webkit窗口中加载Chrome扩展

webkit窗口中加载Chrome扩展

本文介绍了是否可以在node-webkit窗口中加载Chrome扩展的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用制作node.js应用程序。是否有可能在node-webkit窗口中加载一个chrome扩展,并使它看起来像它在chrome浏览器中显示的一样



我已经通过,但我只能理解它可以加载NPAPI插件。有没有办法将Chrome扩展程序转换为NPAPI插件?现在支持加载Chrome扩展程序,使用'--load-extension '从Chromium切换。



以前,由于node-webkit基于Chromium的内容层,因此没有扩展支持。


I am trying to make a node.js app using node-webkit . Is it possible to load a chrome extension in node-webkit window and make it appear as it appear in chrome browser

I have gone through this but I am only able to understand that it can load NPAPI plugin. Is there a way to convert chrome extension to NPAPI plugin?

解决方案

Loading Chrome extensions is supported now with '--load-extension' switch from Chromium.

Previously, since node-webkit was based on Content Layer of Chromium, where there was no Extension support.

这篇关于是否可以在node-webkit窗口中加载Chrome扩展的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-06 21:02