自動修改PTT網址 / Auto replace ptt url prefix

修改原生網址

目前为 2021-07-20 提交的版本。查看 最新版本

// ==UserScript==
// @name   自動修改PTT網址 / Auto replace ptt url prefix
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  修改原生網址
// @author       You
// @match        *://www.ptt.cc/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    var url = location.href;

    var newurl = url.replace("ptt","pttweb");
    window.location.href = newurl;

})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址