修改原生網址
// ==UserScript==
// @name 自動修改PTT網址 / Auto replace ptt url prefix
// @namespace http://tampermonkey.net/
// @version 1.2.2
// @description 修改原生網址
// @author You
// @match *://www.ptt.cc/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
var url = location.href;
var ask = /ask*/g;
if(!url.match(ask)){
var newurl = url.replace("ptt","pttweb");
window.location.href = newurl;
}else {
document.querySelector('.btn-big').click();
}
})();