Is your feature request related to a problem? Please describe.
No
Describe the solution you'd like
Would be nice to have an exclusion criteria based on domain using regex. Basically if regex matched to the current address, the extension doesn't load.
Describe alternatives you've considered
Although regex is the best solution as it can also match literal characters, you might want to just use string matching and do not allow regex (I cannot think of why putting such restriction though). then at least having globbing should be an option.
Additional context
This is useful for he following reasons:
for privacy and security reasons if someone want to keep certain websites without injected JS
to keep certain pages light (e.g there is no need to highlight stuff on Youtube where the context is video)
potentially conflicting with some webapp (either the JS conflicts or the keybinding). For instance I use some locally hosted IDEs (e.g Jupyter, Rstudio, Google Collab) in which I don't need certain functionality of highlighting or adding notes.
Is your feature request related to a problem? Please describe. No
Describe the solution you'd like Would be nice to have an exclusion criteria based on domain using regex. Basically if regex matched to the current address, the extension doesn't load.
Describe alternatives you've considered Although regex is the best solution as it can also match literal characters, you might want to just use string matching and do not allow regex (I cannot think of why putting such restriction though). then at least having globbing should be an option.
Additional context This is useful for he following reasons: