我们可以允许我们的插件为每个标签运行。
现在我的chrome扩展程序正在维护窗口会话意味着如果我将我的chrome扩展程序打开到两个窗口,那么两者都表现为不同的不同实体
但是如果我打开同一个插件,在一个窗口的2个选项卡中,它表现为1个单位。
所以,如果我们有任何可以维护每个标签会话的内容,请帮助我。
在我的内容脚本中,我正在编写这样的代码 -
$(document).ready(function() {
if(window.location.href == "https://google.com/"){
//Here i am writing my logic.
}
});
mainifest.json
码
"content_security_policy": "script-src 'self' http://localhost:8080; object-src 'self'",
"content_scripts": [ {
"js": [ "jquery_min.js", "credit_card.js" ],
"matches": ["http://*/*", "https://*/*"]
}],
"web_accessible_resources": [
"credit_card_info.html",
"credit_card.css"
],
"permissions": [
"tabs",
"bookmarks",
"http://www.blogger.com/",
"http://*.google.com/",
"unlimitedStorage",
"http://localhost:8080/*"
]
}