2

Is is possible for a userscript to run on (@match) URLs that begin with chrome-extension://, i.e. change other extensions?

Jakob Weisblat
  • 7,450
  • 9
  • 37
  • 65

1 Answers1

1

Yes, that's possible. From the Content scripts, "Match Patterns" documentation:

A match pattern is essentially a URL that begins with a permitted scheme (http, https, file, ftp, or chrome-extension), and that can contain '*' characters. The special pattern <all_urls> matches any URL that starts with a permitted scheme.

(Note that userscripts, in Chrome, are converted to slightly-specialized "content scripts")

Brock Adams
  • 90,639
  • 22
  • 233
  • 295
  • Updates: [Q 10196258](http://stackoverflow.com/q/10196258/331508) and [Q 19042857](http://stackoverflow.com/q/19042857/331508). – Brock Adams Oct 10 '13 at 22:22