I'm currently trying to write an extension that modifies the CSS Document Inspector ("devtools.css"). I had no problem embedding CSS in other webpages using content scripts and match patterns, but they don't seem to be able to target the Inspector. Am I missing something or is there a better approach to this?
RESULT: After studying the documentation of Match Pattern, I noticed that I was mistaken, the section of the scheme is very strict in what URL it allows, and "chrome devtools" is not one of them.
UPDATE: Well, with a few hours to work, I came up with using the experimental API to create a new panel in the Inspector, but still no luck with css in parent.
source share