Files
webextensions-examples/context-menu-copy-link-with-types/preview.html
Rob Wu 277ac935fa Add example with advanced clipboard manipulation (#207)
(tested with Firefox 52 and 54)
2017-04-24 14:09:19 -07:00

23 lines
345 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
textarea, div[contentEditable] {
display: block;
border: 1px solid;
height: 5em;
width: 100%;
}
</style>
</head>
<body>
Use Ctrl+V (or Cmd+V) to paste plain text here:
<textarea></textarea>
Use Ctrl+V (or Cmd+V) to paste rich text (HTML) here:
<div contentEditable></div>
</body>
</html>