I've been trying to build a Chrome Extension and unfortunately when it came to finally getting it working I realised I had to make it only active on certain URLs, which was fine because Chrome has both exclude_matches and exclude_globs for this. However there's a bug in Chrome when using these two options in conjunction with CSS - it doesn't work.
I'd like to know if anybody knows any other way that I can inject my CSS only on certain domains (I want to exclude from a couple rather than allow on a lot)? I'm aware that I can use Javascript to write it onto the end of the existing CSS but unfortunately that is giving me a second lag on what the CSS displays (and it's very obvious too).
If anybody could come up with some alternatives I'd be grateful. Perhaps there's some way to use the CSS file via Javascript which doesn't affect performance (note that the domain exclusion isn't needed in the Javascript as exclude_matches works fine with JS files). Any and all ideas are helpful, just a shame Google hasn't fixed a bug which has been around for over a year!
EDIT: Since I figure I'll get a response or two about Programmatic Injection, I'm unclear on how this works so as an example we'll work with these links (with the latter being the one I didn't want to implement the CSS on) in case anybody wants to post an example.
http://example.com/
http://example.com/random/
http://example.com/random/example/
Oh, and I know that Google's example is using a button to start up the CSS, but I'd rather have it start on page load. Thanks again!