GM_addStyle_shim

This is just a shim to add back in GM_addStyle for scripts in @grant none mode, or that run on benighted engines without native GM_addStyle support.

אין להתקין סקריפט זה ישירות. זוהי ספריה עבור סקריפטים אחרים // @require https://update.greasyfork.org/scripts/44560/271595/GM_addStyle_shim.js

function GM_addStyle (cssStr) {
    var D               = document;
    var newNode         = D.createElement ('style');
    newNode.textContent = cssStr;

    var targ    = D.getElementsByTagName ('head')[0] || D.body || D.documentElement;
    targ.appendChild (newNode);
}