Sleazy Fork is available in English.

91porny 高清跳转HD to Normal View Redirect

Redirect from HD view to normal view on 91porny.com

  1. // ==UserScript==
  2. // @name 91porny 高清跳转HD to Normal View Redirect
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Redirect from HD view to normal view on 91porny.com
  6. // @author Your Name
  7. // @match https://91porny.com/*
  8. // @license MIT
  9. // @grant none
  10. // ==/UserScript==
  11. (function() {
  12. 'use strict';
  13. // 检查当前URL是否包含'viewhd'
  14. if (window.location.href.includes('viewhd')) {
  15. // 替换URL中的'viewhd'为'view'
  16. var newUrl = window.location.href.replace('viewhd', 'view');
  17. // 跳转到新的URL
  18. window.location.href = newUrl;
  19. }
  20. })();