添加 css 显示 Tapd 字体图标
// ==UserScript==
// @name 显示 Tapd 字体图标
// @namespace http://tapd.oa.com/
// @version 0.8
// @description 添加 css 显示 Tapd 字体图标
// @author Smadey
// @match http://tapd.oa.com/*
// ==/UserScript==
(function() {
'use strict';
var cssUrl = [].slice.call(document.styleSheets)
.map(function (d) {
return d.href;
})
.filter(Boolean)
.find(function (d) {
return /http:\/\/tdl2\.oa\.com\/tfl\/css_dist\/tfl-style-[^\-]+\.css/.test(d);
});
if (cssUrl) {
var style = document.createElement('link');
style.rel = 'stylesheet';
style.type = 'text/css';
style.href = cssUrl.replace('http://tdl2.oa.com/', 'https://tdl2.tapd.tencent.com/');
document.head.appendChild(style);
}
})();