您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
将谷歌机器学习教程的wiki英文链接改成中文链接,点击链接将在新标签页中打开,同时点击右上角的wiki图标可在新标签页中打开原wiki英文链接
// ==UserScript== // @name Google machine-learning course helper // @namespace http://tampermonkey.net/ // @version 0.1 // @description 将谷歌机器学习教程的wiki英文链接改成中文链接,点击链接将在新标签页中打开,同时点击右上角的wiki图标可在新标签页中打开原wiki英文链接 // @author You // @match https://developers.google.cn/machine-learning/crash-course/prereqs-and-prework // @grant none // @require http://code.jquery.com/jquery-1.11.0.min.js // ==/UserScript== this.$ = this.jQuery = jQuery.noConflict(true); (function() { 'use strict'; // Your code here... $('a[href]').each(function(){ let href=$(this).attr('href'); if(href&&href.indexOf('https://wikipedia.org/wiki/')==0){ $(this).attr('href','https://zh.wikipedia.org/wiki/'+$(this).html()); $(this).attr('target','_blank'); $(this).after('<a target="_blank" href="'+href+'"><img src="https://en.wikipedia.org/static/favicon/wikipedia.ico" width="12px" height="12px" style="vertical-align:top"/></a>'); } }); })();