您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
在Graphpad软件中点击帮助后,链接转跳到浏览器打开帮助页,帮助页为英文,本脚本实现将帮助地址自动转换为中文地址
// ==UserScript== // @name Graphpad-Prism8/9英文在线帮助替换为中文网址 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 在Graphpad软件中点击帮助后,链接转跳到浏览器打开帮助页,帮助页为英文,本脚本实现将帮助地址自动转换为中文地址 // @author gdqb521 // @match https://www.graphpad.com/guides/* // @icon http://www.graphpad-prism.cn/konecms/module/content/template/static/images/favicon.ico // @grant none // ==/UserScript== (function() { var target_url; var current_url = window.location.href; if (current_url.indexOf("www.graphpad.com/guides") != -1 ) { //替换“统计” target_url = current_url.replace("/统计/","/statistics/"); target_url = target_url.replace("/%E7%BB%9F%E8%AE%A1/","/statistics/"); //替换“曲线拟合” target_url = target_url.replace("/曲线拟合/","/curve-fitting/"); target_url = target_url.replace("/%E6%9B%B2%E7%BA%BF%E6%8B%9F%E5%90%88/","/curve-fitting/"); //替换latest target_url = target_url.replace("/latest/","/9/"); //替换原始域名为中文官网域名 target_url = target_url.replace("www.graphpad.com","www.graphpad-prism.cn"); } window.location = target_url; } )();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址