知道 (@wisdgod) 在 冻结动态头像 脚本更新 中发帖
从禁用 gif 的用户脚本 & 催更增强插件继续讨论:
// ==UserScript==
// @name 冻结 Linux.do 动态头像
// @namespace http://tampermonkey.net/
// @version 0.3
// @description 截取 GIF 头像第一帧替换为静态 PNG
// @author wisdgod
// @match https://linux.do/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
const cache = new Map(); // url -> base64 | 'skip' | 'pending'
function...