Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设用户在页面上选择了一些随机文本并点击Ctrl+C(或Cmd+C在 Mac 上)甚至点击编辑菜单中的“复制”。
如何在带有关联回调的 Chrome 扩展程序中收听此事件?
我无法从Google Chrome 扩展文档中弄清楚。
这更像是一个 Javascript/DOM 问题,而不是 Chrome 扩展问题。
为复制事件添加事件监听器:
document.addEventListener('copy', function(e) { console.log(e); });