您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Makes YouTube default to its Dark Theme by initialising the relevant cookie
// ==UserScript== // @name Default YouTube to Dark Theme // @version 0.2 // @description Makes YouTube default to its Dark Theme by initialising the relevant cookie // @author uxamend // @namespace https://gf.qytechs.cn/en/users/231373-uxamend // @match *://*.youtube.com/* // @grant none // @run-at document-start // @license CC0-1.0 // ==/UserScript== "use strict"; var c = document.cookie // If there's no PREF cookie, then create one with a value that enables the Dark Theme if(!c || !c.match("^PREF=|; ?PREF=")) { document.cookie = "PREF=f6=400;domain=youtube.com"; } // We are only interested in setting the cookie if this is the first visit to YouTube since // cookies were cleared/deleted. // // If the cookie already exists, then we don't need or want to do anything. // // Overwriting an existing PREF cookie could risk data loss of other preferences, since we // don't know how exactly preferences are expressed. All we know is that PREF=f6=400 // gives us YouTube's defaults except with Dark Theme enabled.
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址