您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removes photo protection in Telegram
当前为
// ==UserScript== // @name Telegram Photo Protection Remover // @namespace http://tampermonkey.net/ // @version 1.2.2 // @description Removes photo protection in Telegram // @author GooseOb // @match https://web.telegram.org/* // @icon https://www.google.com/s2/favicons?sz=64&domain=telegram.org // @license MIT // @grant none // ==/UserScript== (function() { const v = window.location.pathname[1]; if (v === 'k') { const aspecters = document.getElementsByClassName('media-viewer-aspecter'); new MutationObserver(([{addedNodes: [addedNode]}]) => { if (addedNode) setTimeout(() => { aspecters[0].getElementsByTagName('img')[0].style.pointerEvents = 'auto'; }); }).observe(document.getElementById('page-chats'), { childList: true }); } else if (v === 'z') { const PROTECTION_CLASS = 'is-protected'; setInterval(() => { const mediaViewer = document.getElementById('MediaViewer'); if (mediaViewer) { mediaViewer.querySelector('.protector')?.remove(); Array.from(mediaViewer.getElementsByClassName(PROTECTION_CLASS)).forEach(el => { el.classList.remove(PROTECTION_CLASS); }); }; }, 200) }; })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址