在开发谷歌浏览器插件时候注册了一个右键菜单
每次刷新页面的时候就会出现这个重复添加的错误
unchecked runtime.lasterror: cannot create item with duplicate id XXX
经谷歌解决manifest.json文件里
background属性里persistent需要设置为true
设置代码如下:
"background" : {
"scripts": ["js/background.js"],
"persistent": true //这个一定要设置为true 不然会一直添加
},