您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
国家计量技术规范文件下载插件,修复部分技术规范文件不能下载的问题。
当前为
// ==UserScript== // @name 国家计量技术规范文件下载插件 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 国家计量技术规范文件下载插件,修复部分技术规范文件不能下载的问题。 // @author vx:2535688890 // @match http://jjg.spc.org.cn/resmea/standard/* // @grant none // ==/UserScript== (function() { 'use strict'; if ($('.flexible').length == 0) { 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'); } })();