In my manifest I am injecting some content scripts based on a specific page name.
However it appears that the matching is case sensitive, so it matches example.html but not Example.html.
How can I make it not case sensitive?
"content_scripts": [
{
"matches": ["http://*/example.html"],
"css": ["mystyles.css"],
"js": ["jquery.js", "myscript.js"]
}
]