Greasy Fork

Greasy Fork is available in English.

智能下载名称

替换ZJU各大办公网站的附件下载名称

当前为 2020-10-12 提交的版本,查看 最新版本

// ==UserScript==
// @name         智能下载名称
// @namespace    https://www.zjucjh.com/
// @version      0.1.0
// @description  替换ZJU各大办公网站的附件下载名称
// @author       ZJU帽子
// @match        http://*.zju.edu.cn/*
// @grant        none
// @compatible   firefox >=52
// @compatible   chrome >=55
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    $("a").click(function () {
        this.download = this.innerHTML;
    })
})();