1

我正在尝试使用 chrome exstion API 做一些事情,我想将数据从 background.js 发送到 contentscrip.js 。我所做的一切都失败了,甚至尝试复制并粘贴谷歌示例,但仍然没有成功。(这样做了 2 天,哈哈)

这是我的 json 文件:

    {
  "name": "BlaExtension",
  "version": "0.1",
  "description": "bla the the exstion",
  "permissions": [
    "tabs","http://*/*","https://*/*"
  ],
  "background": {
    "scripts": ["background.js"]
  },
  "content_scripts": [
    {
       "matches": ["http://*/*","https://*/*"],
      "js": ["content_script.js"]
    }
  ],

     "permissions": [
    "tabs", "http://www.google.com/*"
  ],
  "manifest_version": 2
}

背景.js

chrome.tabs.getSelected(null, function (tab) {
    chrome.tabs.sendMessage(tab.id, { greeting: "hello" }, function (response) {
        alert(foo);
    });
});

content_script.js

chrome.extension.onMessage.addListener(function (request, sender, sendResponse) {
  alert(request.greeting);


});

我尝试在 stackoverflow 上有关消息传递的旧帖子中寻求帮助,但似乎没有任何帮助。我在做什么?(对不起我的英语不好)

4

0 回答 0