downthemall / anticontainer

DownThemAll! AntiContainer (Extension to a Firefox, Seamonkey extension)
Mozilla Public License 2.0
93 stars 41 forks source link

Unable to do case sensitive match on URL #15

Open Photodeus opened 13 years ago

Photodeus commented 13 years ago

In file modules/plugins.jsm for each (let x in ['match', 'pattern', 'gone']) { if (x in o) { o['str' + x] = o[x]; o[x] = new RegExp(o[x], 'im'); }

matching rules are compiled case insensitive, however my requirement is to match on certain uppercase URLs only. I'm requesting a way to modify this behaviour.