Greasy Fork is available in English.

youtube profile picture hd

view youtube profile picture in high resolution

Nainstalovat skript?
Skript doporučený autorem

Mohlo by se vám také líbit YouTube redirect to mobile.

Nainstalovat skript
// ==UserScript==
// @name        youtube profile picture hd
// @namespace   youtube profile picture hd
// @match       https://yt3.googleusercontent.com/ytc/*=s*
// @match       https://yt3.googleusercontent.com/*=s*
// @run-at      document-start
// @grant       none
// @version     1.4
// @description view youtube profile picture in high resolution
// ==/UserScript==

(function () {
    'use strict';
    const currentUrl = window.location.href;
    const newSize = 5000; // Define the new size here
    const sizeRegex = /=s\d+/; // Match the size parameter
    const newUrl = currentUrl.replace(sizeRegex, `=s${newSize}`);
    if (currentUrl !== newUrl) {
        window.location.replace(newUrl);
    }
})();