我已经开发了chrome扩展程序,我想做一些更改以在其他浏览器中使用该扩展程序,所以我该怎么做。
基本上,我想对代码进行一些更改,以便扩展程序可以在所有浏览器(如Firefox和Microsoft Edge)中使用。
我尝试替换
chrome.tabs.query({ active: true, currentWindow: true }, function (tabs) {
到
browser.tabs.query({ active: true, currentWindow: true }, function (tabs) {
但它现在正在工作。