Advertisement
Guest User

tripcodeforrf

a guest
Nov 15th, 2017
757
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. // ==UserScript==
  2. // @name tripcode
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author coyc
  7. // @match https://2ch.hk/rf/
  8. // @match https://2ch.hk/rf/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. // Your code here...
  15. $("label[for=e-mail]").text("Трипкод");
  16. document.getElementById("e-mail").name = "name";
  17. document.getElementById("e-mail").placeholder = "трипкод";
  18. document.getElementById("qr-e-mail").name = "name";
  19. document.getElementById("qr-e-mail").placeholder = "трипкод";
  20. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement