Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2020
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.58 KB | None | 0 0
  1. # twitter: only see posts from OP, no retweets:
  2.  
  3. https://twitter.com/diaperfurry/media?lang=en
  4.  
  5. document.querySelectorAll('.Tombstone-action.js-display-this-media.btn-link').forEach(x => x.click())
  6.  
  7. ----------------------------------------------------------------------------------------------------------------
  8.  
  9. # Accounts
  10.  
  11. ## https://temp-mail.org/en/ very good throwaway email
  12.  
  13. https://chan.sankakucomplex.com/ no email verification necessary
  14.  
  15. https://www.hypno-fetish.com/login
  16. rihata7075@mail-help.net
  17. efbb5a1ef8
  18.  
  19. ----------------------------------------------------------------------------------------------------------------
  20.  
  21. // Tumblr: remove top bar (good for story accounts)
  22. // tumblr: both kinds of pages
  23. var classes = ['.header-wrapper', '.tmblr-iframe', '.nav-menu', '.tmblr-iframe', '.navigation']
  24. for (var i = 0; i < classes.length; i++) {
  25. var x = $(classes[i])
  26. if (!!x) {
  27. x.style.display = 'none'
  28. }
  29. }
  30.  
  31. ----------------------------------------------------------------------------------------------------------------
  32.  
  33. //pornhub
  34. document.onkeydown = function(evt) {
  35. if (evt.keyCode !== 74) return //j
  36.  
  37. document.querySelector('#player').style.zIndex = 10000
  38. document.querySelector('#player').style.position = 'absolute'
  39. document.querySelector('#player').style.top = '-10px'
  40. document.querySelector('#player').style.width = '100vw'
  41. document.querySelector('#player').style.maxWidth = '100vw'
  42.  
  43. document.querySelector('#player').style.height = '100vh'
  44. document.querySelector('#player').style.maxHeight = '100vh'
  45. document.querySelector('body').style.overflowX = 'hidden'
  46. }
  47. // pornhub
  48.  
  49. /////////////////////////////
  50.  
  51. // rotated
  52. document.onkeydown = function(evt) {
  53. if (evt.keyCode !== 74) return //j
  54. document.querySelector('#player').style.zIndex = 10000
  55. document.querySelector('#player').style.position = 'absolute'
  56. document.querySelector('#player').style.top = '-10px'
  57. document.querySelector('#player').style.width = '100vh'
  58. document.querySelector('#player').style.maxWidth = '100vh'
  59. document.querySelector('#player').style.height = '100vw'
  60. document.querySelector('#player').style.maxHeight = '100vw'
  61.  
  62. document.querySelector('#player').style.transform = 'rotate(-90deg)'
  63.  
  64. document.querySelector('body').style.overflowX = 'hidden'
  65. }
  66. // rotated
  67.  
  68. ----------------------------------------------------------------------------------------------------------------
  69.  
  70. // nsfwyoutube.com
  71. $('#somead').remove()
  72.  
  73. ----------------------------------------------------------------------------------------------------------------
  74.  
  75. // tia's feeding time
  76. document.querySelector('video').addEventListener("timeupdate", function(){
  77. // current time is given in seconds
  78. this.loop = true
  79. if(this.currentTime >= (130)) {
  80. this.currentTime = 15
  81. }
  82. });
  83.  
  84. ----------------------------------------------------------------------------------------------------------------
  85.  
  86. // volume
  87. document.querySelector('video').volume = 0.04
  88.  
  89. ----------------------------------------------------------------------------------------------------------------
  90.  
  91. // watch long vk videos
  92. // this is also natalie mars + penny barber video
  93.  
  94. https://vk.com/video-124398966_456241421
  95. // turns into...
  96. https://psv17-3.crazycloud.ru/videos/-124398966/456241421/720.mp4?extra=XT-oYDiKebgTSKqTH3kB1w&dl=0
  97.  
  98. if this doesn't work go to https://savevk.com/video-124398966_456241421, start downloading, cancel the download, open downloads window, right click, get download link, it should look like the link right above this except change dl=1 to dl=0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement