I'm creating a Grasemonkey user script that is getting really big.
Can I split it into several smaller files? If so, how?
Thanks.
|
I'm creating a Grasemonkey user script that is getting really big. Can I split it into several smaller files? If so, how? Thanks. | |||
|
feedback
|
|
Yes, and in Greasemonkey, it's rather easy. If you want to split your scripts into i18n.js:
utils.js:
my.user.js:
…and Greasemonkey will download and install all three files, join them up in the order listed by your | |||
|
feedback
|
|
Of course you can. For example, if you use Greasemonkey as Mozilla addon, then in
Both If your engine uses in-file annotations, then use
| |||||||
feedback
|