前端开发您现在的位置是:首页 > 博客日志 > 前端开发

Chrome扩展程序:chrome.tabs.executeScript无效

<a href='mailto:'>微wx笑</a>的头像微wx笑 2023-04-13前端开发 2 0关键字: Chrome扩展程序  executeScript  

Chrome扩展程序:chrome.tabs.executeScript无效chrome.tabs.executeScript 对应的 manifast 版本应该是2.0,如果是 "manifest_version": 3, 就不能使用了,需要使用 chrome.scri

Chrome扩展程序:chrome.tabs.executeScript无效

chrome.tabs.executeScript 对应的 manifast 版本应该是2.0,

如果是 "manifest_version": 3, 就不能使用了,需要使用 xUI无知

chrome.scripting.executeScript({
      target: {tabId: tabId, allFrames: true},
      files: ['script.js'],
    });
    
  //指定iframeID执行
  const frameIds = [frameId1, frameId2];
  chrome.scripting.executeScript({
      target: {tabId: tabId, frameIds: frameIds},
      files: ['script.js'],
    });


xUI无知


xUI无知

本文由 微wx笑 创作,采用 署名-非商业性使用-相同方式共享 4.0 许可协议,转载请附上原文出处链接及本声明。
原文链接:https://www.ivu4e.cn/blog/front/2023-04-13/1841.html

很赞哦! () 有话说 ()