Greasy Fork is available in English.

Infogalactic Redirect

redirect from a wretched wikipedia page to its infogalactic better

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name         Infogalactic Redirect
// @namespace    http://gab.ai/Jeremy20_9
// @version      0.1
// @description  redirect from a wretched wikipedia page to its infogalactic better
// @author       Jeremiah 20:9
// @match        https://*.wikipedia.org/wiki/*
// @grant        none
// ==/UserScript==

var loc = window.location.href;
var locparts = loc.split("/");
window.location.href = "http://infogalactic.com/info/" + locparts[locparts.length-1];