我想清理我的通知(徽章)。单击图标时,应同时打开弹出窗口,但不起作用。
它适用于标签但我不想在标签上显示它应该在弹出窗口。
这是代码;
var i = 1;
function updateIcon() {
i=1;
chrome.browserAction.setBadgeText({text: ''});
chrome.browserAction.setPopup({popup:"popup.html"});
}
chrome.browserAction.onClicked.addListener(updateIcon);
chrome.browserAction.setBadgeBackgroundColor({color:[200, 0, 0, 100]});
window.setInterval(function() {
chrome.browserAction.setBadgeText({text:String(i)});
i++;
}, 4000);
答案 0 :(得分:1)
您的徽章文字正在增长,因为Background Page
一直存在,直到卸载或停用扩展程序。
所以你的代码
window.setInterval(function() {
chrome.browserAction.setBadgeText({text:String(i)});
i++;
}, 4000);
保持徽章继续增长。
此外,chrome.browserAction.onClicked.addListener(updateIcon);
第二次无效!
你想停止什么?
P.S:您正在使用两个相互冲突的功能(browserAction.onClicked
和browserAction.setPopup
。
已注册的背景页面和浏览器操作
{
"name": "Bagde",
"description": "http://stackoverflow.com/questions/14436053/chrome-extension-onclick-with-popup",
"version": "1",
"manifest_version": 2,
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_title": "Hi",
"default_popup": "popup.html"
}
}
使用您的代码并消除冲突的browserAction.onClicked
事件
var i = 1;
function updateIcon() {
i = 1;
chrome.browserAction.setBadgeText({
text: ''
});
chrome.browserAction.setPopup({
popup: "popup.html"
});
}
chrome.browserAction.setBadgeBackgroundColor({
color: [200, 0, 0, 100]
});
window.setInterval(function () {
chrome.browserAction.setBadgeText({
text: String(i)
});
i++;
}, 4000);
一些简单的页面,使用popup.js
来遵守CSP。
<html>
<head>
<script src="popup.js"></script>
</head>
<body>
<p>Some Content ..</p>
</body>
</html>
调用背景页面功能,以便在点击图标时启动计数器
document.addEventListener("DOMContentLoaded", function () {
//Get Reference to Functions
backGround = chrome.extension.getBackgroundPage();
//Call Function
backGround.updateIcon();
});