Yet Another Imagehost Redirect

Remove ads from ImageHost

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name        Yet Another Imagehost Redirect
// @namespace   H2Studio
// @description Remove ads from ImageHost
// @require        http://code.jquery.com/jquery-1.11.3.min.js
// @include       *://imgdream.net/viewer.php*
// @include       *://daily-img.com/viewer.php*
// @include       *://www.imgbabes.com/*jpeg.html
// @include       *://www.imgbabes.com/*jpg.html
// @include       *://imgclick.net/*jpeg.html
// @include       *://imgclick.net/*jpg.html
// @include       *://*imgseeds.com/img*
// @version     1.3
// ==/UserScript==


if(UrlContains("imgdream.net") ||
  UrlContains("daily-img.com"))
{
    GetByHref($("div.text_align_center a:first"));
}
if(UrlContains("imgbabes.com"))
{
    GetBySrc($("span#zoomimage img#this_image"));
}
if(UrlContains("imgclick.net"))
{
    if( $(".fuckadb form").length > 0) {
        $(".fuckadb form").submit();
    } else {
        GetBySrc($(".pic"));
    }
}
if(UrlContains("imgseeds.com"))
{
    if( $("#continuetoimage .centred0").length > 0) {
        var path = $("#continuetoimage .centred0").attr("src");
        path = path.replace("small", "big");
        GoTo(path);
        
    } else if ($(".fullimg").length > 0) {
        GetBySrc($(".fullimg img"));
    }
}
// --------------------------------------------------------------------------------------
// public method-------------------------------------------------------------------------
// --------------------------------------------------------------------------------------
function GetByHref(jHref) {
     GoTo(jHref.attr('href'));
}

function GetBySrc(jImg) {
     GoTo(jImg.attr('src'));
}

function GoTo(url) {
     window.location.assign(url);
}

function UrlContains(urlfragment) 
{
	return document.URL.indexOf(urlfragment) != -1;
}