您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Lets Images load directly without using gaia's image cache server (The cache server exist to prevent password protected images from prompting for password)
// ==UserScript== // @name Gaia Image Patch // @namespace http://userscripts.org/users/62850 // @description Lets Images load directly without using gaia's image cache server (The cache server exist to prevent password protected images from prompting for password) // @include http://www.gaiaonline.com/* // @version 1 // ==/UserScript== var imgs=document.evaluate("//img[starts-with(@src,'http://img-cache.cdn.gaiaonline.com/')]",document,null,6,null),img,url; for(var i=imgs.snapshotLength-1;i>-1;i--){ img=imgs.snapshotItem(i); url=img.src; url=url.substr(url.lastIndexOf('/http')+1); img.src=url; }