我进行了兑换,但我遇到了一些问题。
当我点击扩展图标我的扩展程序正常工作(希望关闭应用程序)但当我关闭并再次打开时,我的扩展程序正在重新启动。
我的代码每次打开和关闭活动都会从其他网址获取数据。
但我想要这个:我的代码必须在后台工作,当我打开应用程序时,我需要看到即时值。
这是清单文件:
{
"name" : "Eklenti",
"version" : "2.0",
"manifest_version" : 2,
"description" : "Bu bir google chrome eklentisidir.",
"browser_action" : {
"default_icon" : "icon.png",
"default_popup" : "index.html"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [ {
"js": [ "bootstrap.min.css","jquery-3.3.1.min.js","bootstrap.min.js","main.js" ],
"matches": [
"<all_urls>"
]
}],
"permissions": [ "contentSettings","activeTab","webRequest", "webRequestBlocking", "webNavigation", "tabs", "http://*/*", "https://*/*", "debugger",
"storage"]
}