readimage

已经看过的图片显示红框

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name        readimage
// @namespace   taoww
// @include	http://*
// @include	https://*
// @include	ftp://*
// @exclude     *://tieba.baidu.com/*
// @exclude     *://hi.baidu.com/*
// @exclude     *://blog.sina.com.cn/*
// @exclude     *://*.blog.sina.com.cn/*
// @exclude     *://www.51.la/*
// @exclude     *://bbs.aicbbs.com/*
// @version     1.1
// @description  已经看过的图片显示红框
// @grant       GM_addStyle
// ==/UserScript==

GM_addStyle("a img { border: 7px solid white; }");
GM_addStyle("a:visited img { border-color: red !important; }");

document.body.addEventListener("click", function(event) {
        var t = event.target;
        if (t.tagName === "IMG") {
                var link = null;
                if (t.parentNode.tagName === "A") {
                        link = t.parentNode;
 
               } else if (t.parentNode.tagName != "A" && 
t.parentNode.children.length === 1 && 
t.parentNode.parentNode.tagName === "A") {
                        link = t.parentNode.parentNode;
                }
                if (link && link.target !== "_blank" && link.href) {
                        var f = document.createElement("iframe");
                        f.style.display = "none";
                        f.src = link.href;
                        document.body.appendChild(f);
                }
        }
}, false);