Greasy Fork

wiki open image

wiki

目前为 2018-12-01 提交的版本。查看 最新版本

// ==UserScript==
// @name		wiki open image
// @version		2.2
// @description	wiki
// @include		https://*.wikia.com/wiki/*
// @include		https://*.wikia.nocookie.net/*
// @grant		none
// @run-at		document-end
// @namespace https://greasyfork.org/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();