Merhaba Greasmonkey addStyle ile addGlobalStyle arasındaki fark nedir?

  • addStyle Kullanımı

Alıntı
GM_addStyle(".footer { display: none !important; }");
  • addGlobalStyle Kullanımı

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