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');
}
`);
})();