Merhaba Greasmonkey addStyle ile addGlobalStyle arasındaki fark nedir?
Alıntı
GM_addStyle(".footer { display: none !important; }");
Alıntı
function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}
addGlobalStyle('.footer { display: none !important; }');