显示 Tapd 字体图标

添加 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);
  }
})();

QingJ © 2025

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