Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to load chrome extension in node-webkit window

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?

like image 265
Jagdeep Avatar asked Jun 14 '13 20:06

Jagdeep


1 Answers

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.

like image 175
Roger Wang Avatar answered Sep 18 '22 00:09

Roger Wang