Minimal Chrome extension (8ko) that output the content of clipboard to a new tab

oncopy.js 121B

12345
  1. function onCopy(e) {
  2. chrome.runtime.sendMessage({event:"copy"});
  3. }
  4. document.addEventListener("copy", onCopy, true);