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

oncopy.js 120B

1
  1. "use strict";function onCopy(a){chrome.runtime.sendMessage({event:"copy"})}document.addEventListener("copy",onCopy,!0);