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
Per the spec, if you want to set the priority, not just the value, you have to use setProperty, like so:
setProperty
document.body.style.setProperty ("color", "green", "important");