为了账号安全,请及时绑定邮箱和手机立即绑定

将消息从后台脚本发送到内容脚本,然后发送到注入的脚本

将消息从后台脚本发送到内容脚本,然后发送到注入的脚本

动漫人物 2019-09-02 05:04:29
将消息从后台脚本发送到内容脚本,然后发送到注入的脚本我正在尝试将消息从后台页面发送到内容脚本,然后将该内容脚本中的消息发送到注入的脚本。我试过这个,但它没有用。这是我的代码的样子。的manifest.json{   "manifest_version": 2,   "name": "NAME",   "description": ":D",   "version": "0.0",   "permissions": [     "tabs","<all_urls>"   ],   "content_scripts": [     {       "matches": ["<all_urls>"],       "js": ["content_script.js"]     }   ],   "web_accessible_resources": [       "injected.js"   ],   "background":{       "scripts":["background.js"]   }}background.jschrome.tabs.query({active: true, currentWindow: true}, function(tabs) {   chrome.tabs.sendMessage(tabs[0].id, {greeting: "hello"}, function(response){});});content_script.jsvar s = document.createElement('script');s.src = chrome.extension.getURL('injected.js');s.onload = function(){          this.parentNode.removeChild(this);};(document.head||document.documentElement).appendChild(s);chrome.runtime.onMessage.addListener(   function(request, sender, sendResponse) {     document.dispatchEvent(new CustomEvent('Buffer2Remote', {todo: "LOL"}));});injected.jsdocument.addEventListener('Buffer2Remote', function(e){     alert(e.todo);});消息发送在第一部分background - > content_script中不起作用。我的代码有什么问题吗?
查看完整描述

2 回答

  • 2 回答
  • 0 关注
  • 246 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信