// ==UserScript== // @name C语言开发环境美化(中国大学MOOC) // @namespace http://tampermonkey.net/ // @version 0.2 // @description 为按钮增加解释性文字 // @author AN drew // @match http://clin.icourse163.org/ // @require https://cdn.bootcdn.net/ajax/libs/jquery/3.1.1/jquery.min.js // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; $("head").append('') var map = new Map(); map.set("format_align_left"," 代码格式化"); map.set("help"," 帮助"); map.set("open_in_browser"," 上传代码"); map.set("file_download","下载当前代码"); map.set("play_arrow","运行"); map.set("bug_report","调试"); map.set("brightness_7"," 切换日间/夜间模式"); map.set("brightness_2"," 切换日间/夜间模式"); $(".material-icons").each(function(){ $(this).after($(''+map.get($(this).text())+'')) }) })();