Suppose I have an extension that has 3 files in includes
directory:
includes/all.js includes/one.js includes/two.js
two.js
depends on one.js
and both of them have guard comments :
// ==UserScript== // @include http://*.example.com/* // @include https://*.example.com/* // ==/UserScript==
all.js
loads for every page.
My question is: in what order those .js files will be processed by Opera on http://foobar.example.com/
page?
There are some rumors that the order is alphabetical, but I cannot find a definitive source of this claim.