Greasy Fork

Greasy Fork is available in English.

wiki open image

wiki

当前为 2015-05-11 提交的版本,查看 最新版本

// ==UserScript==
// @name         wiki open image
// @version      2.1
// @description  wiki
// @include      http://*.wikia.com/wiki/*
// @include      http://img1.wikia.nocookie.net/*
// @grant 		none
// @run-at       document-end
// @namespace http://greasyfork.icu/users/85
// ==/UserScript==

var temp=/^https?:\/\/.*\.wikia\.com\/wiki\/file/i;
if(temp.test(location.href))
	temp=document.getElementsByClassName("internal")[0];
a=temp.href.split("/revision");
temp.href=a[0];
temp.click();