Advertisement
Guest User

Untitled

a guest
May 28th, 2016
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         SSC email randomizer
  3. // @namespace    http://slatestarcodex.com/
  4. // @version      0.1
  5. // @description  Post as different identity every time
  6. // @author       Anonymous
  7. // @include      http://slatestarcodex.com/*
  8. // @grant        GM_setValue
  9. // ==/UserScript==
  10.  
  11. jQuery(document).ready(function() {
  12.     jQuery('#commentform').submit(function() {
  13.         document.forms["commentform"]["email"].value = 'a' + Math.random() + '@gmail.com';
  14.     });
  15. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement