Greasy Fork

电子科大信软学院 - 修正附件下载文件名

Love UESTC

当前为 2019-04-28 提交的版本,查看 最新版本

// ==UserScript==
// @name 电子科大信软学院 - 修正附件下载文件名
// @version 1
// @match http://www.is.uestc.edu.cn/news.do
// @grant none
// @namespace https://greasyfork.org/users/164794
// @description Love UESTC
// ==/UserScript==

const attachmentRe = /附件\d+-(.+)$/

document.querySelectorAll('.text a').forEach((anchor) => {
  const match = anchor.innerText.match(attachmentRe)
  if (match) {
      anchor.download = match.pop().trim()
  }
})