在 Chrome 插件中,通过后台脚本,我以这种方式注入样式:
if(!styleLeft){
var styleLeft = document.createElement("style");
document.head.appendChild(styleLeft);
styleLeft.innerHTML = "a, .left-hand { cursor: wait; }";
}
但是当样式标签已经在页面中时 if 不起作用。如何寻找我的特定风格?
谢谢。