Sleazy Fork is available in English.

PH Bypasser VK

Don't watch videos - bad for you! You can watch without logging into VK (for privacy).

  1. // ==UserScript==
  2. // @name PH Bypasser VK
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.26
  5. // @description Don't watch videos - bad for you! You can watch without logging into VK (for privacy).
  6. // @description Не смотри видео - это плохо для тебя! Теперь ты можешь смотреть без входа в ВКонтакте (для конфиденциальности)
  7. // @author https://greasyfork.org/en/users/1202823-en-users-sign-up
  8. // @match https://*.pornhub.com/*
  9. // @icon https://www.google.com/s2/favicons?sz=64&domain=pornhub.com
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. if (document.isConnected) {
  17. document.getElementById('age-verification-wrapper').remove()
  18. document.getElementById('age-verification-container').remove()
  19. }
  20. })();