是否可以在当前选项卡中模拟隐身模式? (chrome 分机)

Is it possible to simulate incognito mode in current tab? (chrome extension)

大学里有一个很多人鄙视的网站,那就是blackboard。我的学校有自己的黑板 运行 实例,它必须完全配置错误,因为您的会话几乎立即超时,或者您在登录后尝试浏览时弹出数千个错误。这些问题似乎在登录时得到解决通过隐身模式。

问题: 我创建了一个扩展程序,当您导航到黑板时,它会关闭您当前的选项卡并以新的隐身方式打开黑板 window。是否可以在当前选项卡中实现相同的效果?

我当前的解决方案工作正常,但在当前选项卡中 "spoof" 隐身会好 100 倍。

很遗憾,没有。 Chrome 是有意设计的,在普通模式和隐身模式之间进行了一定的区分,包括限制在一个 window 中混合使用标签类型。 chrome.tabs API provides several methods for accessing and manipulating tab properties but there isn't a way to 'spoof' a tab's properties, other than updating them using chrome.tabs.update,它不提供更新选项卡 incognito 属性.

的功能