修改原生網址
目前為
// ==UserScript==
// @name 修改PTT網址
// @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;
})();