css压缩 Download
动态注入:
const style = document.createElement('style');
style.textContent = `

`;
document.head.appendChild(style);
有效屏蔽<style>显示在网页源代码:
const style = new CSSStyleSheet();
style.replaceSync(`

`);
document.adoptedStyleSheets = [...document.adoptedStyleSheets, style];