UploadCC Image Viewer

Hover the broken image and click it.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         UploadCC Image Viewer
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Hover the broken image and click it.
// @author       CY Fung
// @match        https://*/*
// @icon         https://upload.cc/favicon.ico
// @grant        GM_addStyle
// @grant        GM_getResourceText
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    function imgClick(){
        window.open(this.src,'_blank');
    }

    function setupFix(s){

        if(s.classList.contains('zmtsr-uploaddcc-img-fix')) return;
        s.classList.add('zmtsr-uploaddcc-img-fix');
        s.addEventListener('click', imgClick, false);

    }

    document.addEventListener('animationstart',function(evt){

        if(evt.animationName==='zmtsrUploadccimgfix'){
            setupFix(evt.target);
        }/*else if(evt.animationName === 'uploadccimgfix2'){
        }*/

    },true);

    GM_addStyle(`

@keyframes zmtsrUploadccimgfix {
     0%{
         background-position-x: 1px;
    }
     100%{
         background-position-x:2px;
    }
}
 @keyframes zmtsrUploadccimgfix2 {
     0%{
         background-position-x: 3px;
    }
     100%{
         background-position-x:4px;
    }
}
 img[src^="https://upload.cc/"]{
     cursor:pointer;
     animation: zmtsrUploadccimgfix 1ms;
}
 a[href] img[src^="https://upload.cc/"]{
     animation: initial;
}
 img[src^="https://upload.cc/"]:hover{
     animation: zmtsrUploadccimgfix2 1ms;
}
 a[href] img[src^="https://upload.cc/"]:hover{
     animation: initial;
}


    `);
    const my_css = GM_getResourceText("IMPORTED_CSS");
    GM_addStyle(my_css);

})();