Skip to content

Instantly share code, notes, and snippets.

@jameshibbard
Last active January 18, 2018 21:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jameshibbard/6306213 to your computer and use it in GitHub Desktop.
Save jameshibbard/6306213 to your computer and use it in GitHub Desktop.
Tamper monkey form demonstration
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Tampermonkey form auto-fill</title>
<style>
label{display: inline-block; margin:5px 0px;}
</style>
</head>
<body>
<form>
<div>
<label for="name">Your name:</label>
<input type="text" id="name">
</div>
<div>
<label for="email">Your email:</label>
<input type="text" id="email">
</div>
<div>
<label for="comments">Your comments:</label><br>
<textarea id="comments" rows="15" cols="50"></textarea>
</div>
<input type="submit" value="Submit">
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment