我将Chrome扩展程序移植到Firefox。它具有粘贴到剪贴板功能。但是,我还没有在Firefox中做到这一点。这是我在后台脚本中尝试做的事情:
const input = document.createElement('textarea');
input.style.position = 'fixed';
input.style.opacity = 0;
input.value = text;
document.body.appendChild(input);
input.select();
document.execCommand('copy');
logger(text);
document.body.removeChild(input);
这在Chrome中运行良好。我的清单中有clipboardWrite
权限。有什么提示它为什么不能使用Firefox?