91porny 高清跳转HD to Normal View Redirect

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

// ==UserScript==  
// @name         91porny 高清跳转HD to Normal View Redirect  
// @namespace    http://tampermonkey.net/  
// @version      0.1  
// @description  Redirect from HD view to normal view on 91porny.com  
// @author       Your Name  
// @match        https://91porny.com/*  
// @license      MIT  
// @grant        none  
// ==/UserScript==   
  
(function() {  
    'use strict';  
  
    // 检查当前URL是否包含'viewhd'  
    if (window.location.href.includes('viewhd')) {  
        // 替换URL中的'viewhd'为'view'  
        var newUrl = window.location.href.replace('viewhd', 'view');  
          
        // 跳转到新的URL  
        window.location.href = newUrl;  
    }  
})();