以文本方式查看主题

-  Foxtable(狐表)  (http://www.foxtable.com/bbs/index.asp)
--  专家坐堂  (http://www.foxtable.com/bbs/list.asp?boardid=2)
----  [原创]使用油猴脚本去掉论坛过长的标题方便保存网页  (http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&id=185794)

--  作者:qqzwc
--  发布时间:2023/3/17 10:39:00
--  [原创]使用油猴脚本去掉论坛过长的标题方便保存网页
Foxtable论坛的标题太长了,有的时候我想保存一个论坛网页,会得到一个超长的文件名。为此简易写了个油猴脚本,发布自己用

// ==UserScript==
// @name         FoxtableBBSTitleReplace
// @name:zh-CN   缩短Foxtable论坛标题
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Shorten the BBS\'s title from foxtable
// @description:zh-CN  Foxtable论坛标题太长了,去掉多余的字
// @author       qqzwc
// @match        http://foxtable.com/bbs/*
// @grant        none
// ==/UserScript==

(function() {
    var txt=document.title;
    txt=txt.replace(\' - 专家坐堂 - Foxtable(狐表) - 新一代数据库软件,完美融合Access、Foxpro、Excel、vb.net之优势,人人都能掌握的快速软件开发工具!\',\'-Foxtable论坛\');
    document.title=txt;
})();