I tried to inject a style using this code:
document.body.style.color=\'green!important\';
Per the CSS cascade ref, by applying the !i
!i
element.style.cssText = 'color:green !important';
should work for you.