Copy/Paste Not Working in Chrome Extension

前端 未结 2 1452
遇见更好的自我
遇见更好的自我 2021-02-06 19:28

Following Copy/Paste code not working in Chrome Extension, I need to write Chrome Extension that copy and paste data using clipboard.

I write following code in Backgrou

2条回答
  •  轮回少年
    2021-02-06 20:14

    As of Chrome 13, clipboard access is no longer experimental.

    The commands are now document.execCommand('paste'), document.execCommand('copy') and document.execCommand('cut').

    However, permissions need to be added to your manifest: "clipboardRead" and "clipboardWrite".

    Try implementing the above and see how you get on.

提交回复
热议问题