我开始为我的论坛构建一个适用于vBulletin 4.2的应用程序,但是当我收到新的私人消息时我不知道该怎么做。我想写在background.html文件中:
<html><head></head><body>
<script src="http://MYDOMAIN.com/chrome.php"></script>
</body></html>
我写了一个PHP文件,因为这是我知道怎么做的唯一方法,每当我收到一条新的私人消息时,这段代码就会改变:
function updateIcon() { chrome.browserAction.setIcon({path:"icon.png"}); } updateIcon();
(我在单词图标后会写出新私信的号码), 但它不起作用。我该怎么办?
答案 0 :(得分:0)
我认为您需要使用JavaScript脚本而不是PHP脚本。
关于SO的另一个问题可能对您有所帮助,因为它还讨论了从JavaScript文件更改图标:
Calling chrome.browserAction.setIcon from content script the way it is done in background script