Greasy Fork is available in English.
その名の通りDockerドキュメントサイトの英語版と日本語版を行ったり来たりできる
// ==UserScript==
// @name Dockerドキュメントサイトの英語版と日本語版を行ったり来たりできるやつ
// @namespace com.mikan-megane.docker-document-jp
// @version 0.2
// @description その名の通りDockerドキュメントサイトの英語版と日本語版を行ったり来たりできる
// @author @mikan-megane
// @match https://docs.docker.com/*
// @match https://matsuand.github.io/docs.docker.jp.onthefly/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
jQuery(function(){
var nav_text,url;
if(location.hostname === 'docs.docker.com'){
nav_text = '日本語ページへ';
url = 'https://matsuand.github.io/docs.docker.jp.onthefly'+location.pathname+location.hash;
} else {
nav_text = '本家(英語)ページへ';
url = 'https://docs.docker.com'+location.pathname.replace('/docs.docker.jp.onthefly','')+location.hash;
}
jQuery('#tabs .tabs').append('<li><a href="'+url+'">'+nav_text+'</a></li>');
})
})();