您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Display automated alt text over images.
- // ==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});
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址