我正在设计开发一个firefox扩展,它将提供内置功能来阻止隐私浏览。我试过下面的代码,但仍然私密浏览仍然相同。请任何人帮我解决这个问题吗?下面给出了我的manifest.json代码
{
"manifest_version": 2,
"name": "Cat Gifs!",
"version": "1.0",
"incognito":"not_allowed",
"background": {
"scripts": ["background.js"],
"persistent": false
},
}