
阻止隐身标签。
此扩展可以阻止隐身选项卡。必须允许在隐身模式下运行它。
有关允许其在隐身运行的说明,请参见Readme:
https://github.com/brismuth/incognito-blocker/blob/master/readme.md#allow-it-t-to-run-in-in-incognito
此扩展名是开源的:https://github.com/brismuth/incognito-blocker
这是正在运行的整个代码:
chrome.tabs.oncreated.addlistener((TAB)=> {
如果(tab.incognito){
chrome.tabs.remove(tab.id);
}
});