Greasy Fork 支持简体中文。

阿里云盘自动重定向

重定向分享页面的 aliyundrive.com 到 alipan.com

// ==UserScript==
// @name         阿里云盘自动重定向
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  重定向分享页面的 aliyundrive.com 到 alipan.com
// @author       You
// @match        https://www.aliyundrive.com/s/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=aliyundrive.com
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    location.href = 'http://alipan.com' + location.pathname
})();