Greasy Fork is available in English.

youtube profile picture hd

view youtube profile picture in high resolution

Nainštalovať tento skript?
Autor skriptu navrhuje

Tiež sa vám môže páčiť YouTube redirect to mobile.

Nainštalovať tento 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);
    }
})();