Facebook Image Alt Text Display

Display automated alt text over images.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Facebook Image Alt Text Display
// @namespace    http://
// @version      0.1
// @description  Display automated alt text over images.
// @author       Marko Zabreznik
// @require      http://code.jquery.com/jquery-1.11.0.min.js
// @match        https://www.facebook.com/
// @grant        none
// @run-at       document-start
// ==/UserScript==

function debounce (func, threshold) {
    var timeout;
    var obj = this;
    function delayed () {
        func.apply(obj);
        timeout = null;
    }
    return function () {
        if (timeout)
            clearTimeout(timeout);
        timeout = setTimeout(delayed, threshold);
    };
}

function showAlt() {
    $("#contentArea img[alt]:not(.fimah).img").each(function(){
        var img = $(this);
        img.addClass('fimah');
        if (img.hasClass('UFIActorImage') || !img.attr('alt') || img.attr('alt') == "No automatic alt text available.") {
            return;
        }
        $('<div style="position:absolute;bottom: 0; padding: 4px; left: 0;background:rgba(255,255,255,0.5); color: black;"></div>')
            .text(img.attr('alt')).insertAfter(this);
    });
}

new MutationObserver(debounce(showAlt, 200)).observe(document, {subtree: true, childList: true});