Note: You must be registered in order to post a reply. To register, click here. Registration is FREE!
T O P I C R E V I E W
Poli
Posted - 03/05/2018 : 11:32:29 Jebo im pas mater, tom smrdljivom You Tubu!
Ponovno su povracali i sjebali mi da nemam vise stari izgled You Tuba, nego ovaj novi. Prije si to mogao sam u postavkama vratiti, sada vise nema te opcije (ili je mozda negdje duboko sakrivena!?), pa sam morao nekih dobrih cetvrt sata traziti i nasao sam ovo:
- umjesto onoga sto je trenutno upisano u Tampermonkeyu ubacite ovo i pohranite:
// ==UserScript== // @name Youtube old design // @namespace 4c5725cd7d4b94b6f1784e759d5a43fbdd917971 // @version 0.1 // @description Activates the old YT design without messing with your other settings // @author /u/AyrA_ch // @match https://www.youtube.com/* // @match http://www.youtube.com/* // @match https://youtube.com/* // @match http://youtube.com/* // @grant none // @run-at document-start // ==/UserScript==
(function () { var getDesignCookie = function (cookie) { //Find existing preferences var prefs = cookie.split("; ").filter(function (v) { return v.indexOf("PREF=") === 0; })[0]; //No preferences, return new ones with design setting if (!prefs) { console.log("prefs not set in cookie"); return "PREF=f6=8"; } //Process all settings var entries = prefs.substr(5).split('&'); var set = false; for (var i = 0; i < entries.length; i++) { if (entries[i].indexOf("f6=") === 0) { set = true; //Set the old design flag var value = +entries[i].substr(3); if ((value & 8) === 0) { console.log("Activating old design and reloading..."); entries[i] = "f6=" + (value | 8); window.setTimeout(location.reload.bind(location,true),100); } else{ console.log("Old design already active. Doing nothing"); } } } //Design flag setting doesn't exists. Adding it instead if (!set) { console.log("Activating old design and reloading..."); entries.push("f6=8"); window.setTimeout(location.reload.bind(location,true),100); } //Build cookie return "PREF=" + entries.join('&'); }; //Update cookie document.cookie = getDesignCookie(document.cookie) + ";domain=.youtube.com;path=/"; })();
- sada radi!
Majke im jos jednom! Pasmasters! Smrdljivi, koji qrac na teraju na ovo novo sranje!?
2 L A T E S T R E P L I E S (Newest First)
wolf
Posted - 03/05/2018 : 13:59:53 Ništa nisam razumio, ali to je ionako uobičajeno u posljednje vrijeme u Polijevim postovima