Skip to content

Instantly share code, notes, and snippets.

@niedzielski
Created January 15, 2018 21:08
Show Gist options
  • Save niedzielski/45d6c989778010fb27f2d5877edac8bc to your computer and use it in GitHub Desktop.
Save niedzielski/45d6c989778010fb27f2d5877edac8bc to your computer and use it in GitHub Desktop.
Toggle Wikipedia (English) and Marvin URLs.
javascript:(_ => {
const marvin = 'marvin.wmflabs.org';
window.location.host = window.location.host === marvin ? 'en.wikipedia.org' : marvin;
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment