It keeps saying $ is not defined in tamper-monkey, even though I already @require the necessary link. What am I doing wrong?
// ==UserScript==
// @name         New Userscript
// @author       You
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js
// @include https://www.google.com/
// ==/UserScript==
$(document).ready(function(){
  console.log('ready');
});
 
     
    