(Attempting to modify CSS properties within a Chrome extension content script)
Is it feasible to override CSS properties that have been marked as !important
on the webpage?
For example, if I aim to eliminate an important border:
$(".someclass").css('border','none'); //this approach does not yield the desired result