您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
fixed Material Design icons on Chrome
当前为
// ==UserScript== // @name temp fixed Material Design icons on Chrome // @namespace https://greasyfork.org // @version 0.1 // @description fixed Material Design icons on Chrome // @description kubernetes, dashboard, icons // @description https://github.com/kubernetes/dashboard/issues/3144#issuecomment-518936677 // @author chaosky // @match http://localhost:8001/api/v1/namespaces/kube-system/services/* // @grant GM_log // @grant GM_addStyle // ==/UserScript== /*jshint multistr: true */ (function() { 'use strict'; GM_addStyle(` @font-face { font-family: 'Material Icons'; font-style: normal; font-weight: 400; src: url(MaterialIcons-Regular.eot); /* For IE6-8 */ src: url(static/MaterialIcons-Regular.woff2) format('woff2'), url(static/MaterialIcons-Regular.woff) format('woff'), url(static/MaterialIcons-Regular.ttf) format('truetype'); } `); })();