I have a Greasemonkey script that applies styles with either .css()
or GM_addStyle()
. These styles are getting overwritten by the styles that are on the page, causing undesired effects.
I know that I can fix this by using !important
on all of my styles, but I really don't want to do this. Is there any way to do this w/o using !important
?