I am trying to load jQuery using @require
so I can start writing the user script. The script is failing on the first $
.
Uncaught ReferenceError: $ is not defined
How do I load jQuery in a user script?
I have seen other examples on github and they make it look easy. What am I missing?
// ==UserScript==
// @name Test
// @description Test description
// @license MIT License
// @charset UTF-8
// @version 0.1
// @match http://example.com/*
// @require http://code.jquery.com/jquery-1.9.1.min.js
// ==/UserScript==
$(function() {
console.log('ok, lets start');
});
If you are using chrome to run your user scripts, you have to opt for an alternative method as @require
is not supported by chrome.
Chromium does not support @require, @resource, unsafeWindow, GM_registerMenuCommand, GM_setValue, or GM_getValue.
More details on: