How can I use jQuery in Greasemonkey scripts in Google Chrome?

Viewed 65473

As some of you may know, Google Chrome has put some severe limitation on Greasemonkey scripts.

Chromium does not support @require, @resource, unsafeWindow, GM_registerMenuCommand, GM_setValue, or GM_getValue.

Without require, I can't find a way to include the jQuery library in Greasemonkey script under Google Chrome.

Does anybody have some advice in this matter?

11 Answers

Also, you could pack your script with jQuery to Chrome extension. See Google Chrome's Content Scripts.

Chrome extensions, unlike Greasemonkey scripts, can auto-update itself.

Related