// ==UserScript== // @name 智能下载名称 // @namespace https://www.zjucjh.com/ // @version 0.1.1 // @description 替换ZJU各大办公网站的附件下载名称 // @author ZJU帽子 // @match http://*.zju.edu.cn/* // @grant none // @compatible firefox >=52 // @compatible chrome >=55 // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; var allA = document.getElementsByTagName("a"); for (var i = 0; i < allA.length; i++) { var a = allA[i]; a.download = a.innerHTML; } })();