YouTube Plus のレビュー
YouTube Plus 作成者: Particle
Firefox ユーザー 14295401 によるレビュー
5 段階中 5 の評価
Firefox ユーザー 14295401 によるレビュー (7年前)And if you want to let it work and you have a new youtube layout, you must change it like this.
1.Open console (CTRL+SHIFT+i).
2.Type this:
// ==UserScript==
// @name Get me Old Youtube
// @namespace http://greasyfork.org/en/scripts/32906
// @version 1.2.3
// @description Sets a Cookie which loads the old Youtube layout (as long as available)
// @author Artain
// @match *://www.youtube.com/*
// @exclude *://www.youtube.com/tv*
// @exclude *://www.youtube.com/embed/*
// @exclude *://www.youtube.com/live_chat*
// @exclude *://www.youtube.com/feed/subscriptions?flow=2*
// @run-at document-start
// @homepageURL http://greasyfork.org/en/scripts/32906
// @license https://creativecommons.org/licenses/by-sa/4.0/
// @grant none
// ==/UserScript==
(function() {
'use strict';
function start() {
var cookie = getPref(),
pref = "f6=8";
if(cookie === "fIsAlreadySet") {
return;
} else if(cookie !== "noPref"){
for(var i = 0; i < cookie.length; ++i) {
pref = pref + "&" + cookie[i].key + "=" + cookie[i].value;
}
}
changePref(pref);
}
function changePref(values) {
var d = new Date();
d.setTime(d.getTime() + (100*24*60*60*1000));
var expires = "expires="+ d.toUTCString();
document.cookie = "PREF=" + values + ";" + expires + ";domain=.youtube.com;hostonly=false;path=/";
location.reload();
}
function getPref() {
var cookie = document.cookie,
splitC = cookie.split(";");
for(var i = 0; i < splitC.length; ++i) {
if(splitC[i].trim().indexOf("PREF") === 0) {
if(splitC[i].trim().indexOf("f6=8") > -1) {
return "fIsAlreadySet";
}
var c = [],
splitValues = splitC[i].substring(5).split("&");
for(var k = 0; k < splitValues.length; ++k) {
var splitV = splitValues[k].split("=");
if(splitV[0] !== "f6") {
var kv = {};
kv.key = splitV[0];
kv.value = splitV[1];
c.push(kv);
}
}
return c;
}
}
return "noPref";
}
start();
})();
3.Press ENTER.
Taht's all! Now it's working
1.Open console (CTRL+SHIFT+i).
2.Type this:
// ==UserScript==
// @name Get me Old Youtube
// @namespace http://greasyfork.org/en/scripts/32906
// @version 1.2.3
// @description Sets a Cookie which loads the old Youtube layout (as long as available)
// @author Artain
// @match *://www.youtube.com/*
// @exclude *://www.youtube.com/tv*
// @exclude *://www.youtube.com/embed/*
// @exclude *://www.youtube.com/live_chat*
// @exclude *://www.youtube.com/feed/subscriptions?flow=2*
// @run-at document-start
// @homepageURL http://greasyfork.org/en/scripts/32906
// @license https://creativecommons.org/licenses/by-sa/4.0/
// @grant none
// ==/UserScript==
(function() {
'use strict';
function start() {
var cookie = getPref(),
pref = "f6=8";
if(cookie === "fIsAlreadySet") {
return;
} else if(cookie !== "noPref"){
for(var i = 0; i < cookie.length; ++i) {
pref = pref + "&" + cookie[i].key + "=" + cookie[i].value;
}
}
changePref(pref);
}
function changePref(values) {
var d = new Date();
d.setTime(d.getTime() + (100*24*60*60*1000));
var expires = "expires="+ d.toUTCString();
document.cookie = "PREF=" + values + ";" + expires + ";domain=.youtube.com;hostonly=false;path=/";
location.reload();
}
function getPref() {
var cookie = document.cookie,
splitC = cookie.split(";");
for(var i = 0; i < splitC.length; ++i) {
if(splitC[i].trim().indexOf("PREF") === 0) {
if(splitC[i].trim().indexOf("f6=8") > -1) {
return "fIsAlreadySet";
}
var c = [],
splitValues = splitC[i].substring(5).split("&");
for(var k = 0; k < splitValues.length; ++k) {
var splitV = splitValues[k].split("=");
if(splitV[0] !== "f6") {
var kv = {};
kv.key = splitV[0];
kv.value = splitV[1];
c.push(kv);
}
}
return c;
}
}
return "noPref";
}
start();
})();
3.Press ENTER.
Taht's all! Now it's working
合計レビュー数: 308
- 5 段階中 1 の評価LeDechaine によるレビュー (7ヶ月前)Broken. You're asked to "restore classic youtube" for it to work. This option no longer exists.
- 5 段階中 5 の評価jobsen konfig によるレビュー (4年前)
- 5 段階中 1 の評価Firefox ユーザー 14243422 によるレビュー (5年前)
- 5 段階中 5 の評価Firefox ユーザー 13999928 によるレビュー (5年前)
- 5 段階中 4 の評価ARC Anjel'a Ajnamaste Kundalini Creator 963 777 によるレビュー (5年前)
- 5 段階中 5 の評価Shellyoung によるレビュー (6年前)Useful for blocking propaganda channels (Especially in Russia and post USSR countries).
- 5 段階中 1 の評価Firefox ユーザー 14731678 によるレビュー (6年前)
- 5 段階中 4 の評価Firefox ユーザー 12486805 によるレビュー (6年前)
- 5 段階中 5 の評価Firefox ユーザー 13963003 によるレビュー (6年前)
- 5 段階中 5 の評価Noris adrian によるレビュー (6年前)
- 5 段階中 5 の評価Firefox ユーザー 15212371 によるレビュー (6年前)
- 5 段階中 4 の評価Firefox ユーザー 15155010 によるレビュー (7年前)
- 5 段階中 5 の評価Firefox ユーザー 15110688 によるレビュー (7年前)
- 5 段階中 5 の評価Firefox ユーザー 15084872 によるレビュー (7年前)
- 5 段階中 4 の評価Oldiserver によるレビュー (7年前)