Greasy Fork

国家计量技术规范文件下载插件

国家计量技术规范文件下载插件,修复部分技术规范文件不能下载的问题。

当前为 2019-09-16 提交的版本,查看 最新版本

// ==UserScript==
// @name         国家计量技术规范文件下载插件
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  国家计量技术规范文件下载插件,修复部分技术规范文件不能下载的问题。
// @author       vx:2535688890
// @match        http://jjg.spc.org.cn/resmea/standard/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    if ($('.flexible').length == 1) {
        $('.flexible').remove();
    }
    console.log('插件加载成功');
    window.file_name = $('.left_bore span')[0].innerHTML;
    var html_button =
        '<a style="cursor:pointer" class="flexible" href="javascript:;" onclick="downloadPad(window.file_name);"><button style="cursor:pointer">下载😀😀😀</button></a>';
    $('.btnbox').append(html_button);
    $('#detail .content .btnbox button').css('background', 'green');
    $('#detail .content .btnbox').css('width', '600px');
})();