如何支持jquery
首先要在头部引入外部资源
@require      https://cdn.bootcss.com/jquery/2.2.1/jquery.js
编辑开始前添加一个注释
 /* globals $ */
完整代码
// ==UserScript==
// @name         study_jquery
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  try to take over the world!
// @author       You
// @match        https://www.youdao.com/
// @require      https://cdn.bootcss.com/jquery/2.2.1/jquery.js
// ==/UserScript==(function() {'use strict';/* globals $ */$('a').css('color','red');
})();