(text)
| 70 | } |
| 71 | |
| 72 | function GM_setClipboard(text) { |
| 73 | function onCopy(event) { |
| 74 | document.removeEventListener('copy', onCopy, true); |
| 75 | |
| 76 | event.stopImmediatePropagation(); |
| 77 | event.preventDefault(); |
| 78 | |
| 79 | event.clipboardData.setData('text/plain', text); |
| 80 | } |
| 81 | |
| 82 | document.addEventListener('copy', onCopy, true); |
| 83 | document.execCommand('copy'); |
| 84 | } |
| 85 | |
| 86 | function GM_xmlhttpRequest(details) { |
| 87 | details.method = details.method ? details.method.toUpperCase() : "GET"; |
nothing calls this directly
no outgoing calls
no test coverage detected