油猴子脚本
// ==UserScript==
// @name Kubernetes Doc to cn
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://kubernetes.io/*
// @match https://k8smeetup.github.io/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
if(document.URL.match("kubernetes.io")){
document.querySelector('body > header > a').href=document.URL.replace("kubernetes.io","k8smeetup.github.io");
}else{
document.querySelector('body > header > a').href=document.URL.replace("k8smeetup.github.io","kubernetes.io");
}
})();
1
ifaii 2018-03-08 22:43:34 +08:00
没有效果
|
3
yuanfnadi OP |
4
yuanfnadi OP @gotounix 推荐 chrone 扩展。https://www.v2ex.com/t/436572#reply1
|