显示 Tapd 字体图标

添加 css 显示 Tapd 字体图标

目前為 2020-03-17 提交的版本,檢視 最新版本

// ==UserScript==
// @name         显示 Tapd 字体图标
// @namespace    http://tapd.oa.com/
// @version      0.7
// @description  添加 css 显示 Tapd 字体图标
// @author       Smadey
// @match        http://tapd.oa.com/*
// ==/UserScript==
(function() {
  'use strict';

  const cssUrl = Array.from(document.styleSheets).map(d => d.href).filter(Boolean).find(d => /(tfl-style-[^\-]+\.css)/.test(d));
  if (cssUrl) {
    const style = document.createElement('link');
    style.rel = 'stylesheet';
    style.type = 'text/css';
    style.href = `https://tapd-1258474337.cos.ap-chengdu.myqcloud.com/tfl-hebe/iconfont/${RegExp.$1}`;
    style.addEventListener('error', () => {
      console.log(`get newest fonts in ${cssUrl}`);
    });
    document.head.appendChild(style);
  }
})();

QingJ © 2025

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