Advertisement
Guest User

Untitled

a guest
Dec 26th, 2020
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name           padoru padoru
  3. // @namespace      *
  4. // @include        http://iichan.hk/*
  5. // @include        http://*.iichan.hk/*
  6. // @include        https://iichan.hk/*
  7. // @include        https://*.iichan.hk/*
  8. // ==/UserScript==
  9.  
  10. if(document.location.href.indexOf("/b/") != -1)
  11. {
  12.   var images =
  13.   [
  14.     "https://iichan.hk/b/src/1608906546551.gif", // Chiyo
  15.     "https://iichan.hk/b/src/1608906567342.gif", // Cirno
  16.     "https://iichan.hk/b/src/1608906584705.gif", // CT
  17.     "https://iichan.hk/b/src/1608906603810.gif"  // Hurma
  18.   ];
  19.   var form = document.getElementById("postform");
  20.   var newTable = document.createElement("table");
  21.     var innerHtml = "<tbody><tr>";
  22.   for (var i=0; i<images.length; i++)
  23.   {
  24.     innerHtml += "<td><img src='"+images[i]+"'/></td>";
  25.   }
  26.   newTable.innerHTML = innerHtml+"</tr></tbody>";
  27.   form.appendChild(newTable);
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement