You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// popup.jsbtn1.addEventListener("click",async(event)=>{let[tab]=awaitchrome.tabs.query({active:true,currentWindow:true})chrome.tabs.sendMessage(tab.id,{action:'click',payload:'i come form popop'})})
// content.jsconstbtn=document.createElement("button")btn.innerText="send"btn.addEventListener("click",()=>{chrome.runtime.sendMessage({action:"toPopup",payload:"i come from content"})})document.body.appendChild(btn)
基础
manifest配置
通信
调试
popup
在popup弹窗右键,点击“检查”调出
background
在chrome拓展程序列表点击“背景页”调出
content_scripts
直接在页面右键,点击“检查”调出
https://juejin.cn/column/7204445469099098167
https://juejin.cn/post/7035782439590952968
https://juejin.cn/post/7265614572118409251
The text was updated successfully, but these errors were encountered: