Greasy Fork is available in English.

Telegram Photo Protection Remover

Removes photo protection in Telegram

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Telegram Photo Protection Remover
// @namespace    http://tampermonkey.net/
// @version      1.4.3
// @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
// ==/UserScript==

(function() {
    const v = window.location.pathname[1];
    if (v === 'k') {
        const listener = e => {
            const img = e.target.querySelector('img');
            if (img) img.style.pointerEvents = 'auto';
        };
        const options = {capture: true};
        document.addEventListener('contextmenu', listener, options);
        document.addEventListener('click', listener, options);
    } else if (v === 'z' || v === 'a') {
        const PROTECTION_CLASS = 'is-protected';
        setInterval(() => {
            const mediaViewer = document.getElementById('MediaViewer');
            if (mediaViewer) {
                mediaViewer.querySelector('.protector')?.remove();
                for (const el of mediaViewer.querySelectorAll('.' + PROTECTION_CLASS)) {
                    el.classList.remove(PROTECTION_CLASS);
                    el.draggable = true;
                }
            }
        }, 200)
    }
})();