Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kdncode/8ac3b8b7a9ad5ec9dde2956730ba510e to your computer and use it in GitHub Desktop.
Save kdncode/8ac3b8b7a9ad5ec9dde2956730ba510e 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