New Chrome Incognito Window via HTML/JS [duplicate]

家住魔仙堡 提交于 2019-11-30 18:23:52

There's an easy way if (and only if) you're developing an extension:

chrome.windows.create({
  url: "http://www.google.com",
  incognito: true
});

It requires tabs permission in the manifest, but that's it.

Note that the above has the user consent to allowing the extension to enter incognito mode, among other tab-related permission. I can't tell 100% whether you're developing an extension -- I assume not -- but in any case that's the extension solution and there isn't one otherwise.

Seems not. You can not force incognito from within the html/js code. You can only load the browser with

-incognito

switch to force it to incognito on load.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!