Skip to content

Instantly share code, notes, and snippets.

@awef
Created June 14, 2010 02:45
Show Gist options
  • Save awef/437220 to your computer and use it in GitHub Desktop.
Save awef/437220 to your computer and use it in GitHub Desktop.
mdcJaEn.user.js
// ==UserScript==
// @name mdcJaEn
// @description MDC日本語版の、存在しない文章へのリンクの/ja/を/en/に置き換える。
// @match https://developer.mozilla.org/ja/*
// @match https://developer.mozilla.org/Ja/*
// ==/UserScript==
Array.prototype.forEach.call(
document.querySelectorAll("a.new[href^='https://developer.mozilla.org/ja/']"),
function(a){
a.pathname = a.pathname.replace(/^\/ja\//i, "/en/");
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment