wikiFeet Dark Theme

Enable dark theme on wikiFeet

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name            wikiFeet Dark Theme
// @name:de         wikiFeet Dark Theme
// @name:fr         wikiFeet Dark Theme
// @name:it         wikiFeet Dark Theme
// @author          iXXX94
// @namespace       https://sleazyfork.org/users/809625-ixxx94
// @icon            https://www.google.com/s2/favicons?sz=64&domain=wikifeet.com
// @description     Enable dark theme on wikiFeet
// @description:de  Aktivieren Sie das dunkle Thema auf wikiFeet
// @description:fr  Activer le thème sombre sur wikiFeet
// @description:it  Abilita il tema scuro su wikiFeet
// @copyright       2021, iXXX94 (https://sleazyfork.org/users/809625-ixxx94)
// @license         MIT
// @version         1.2.0
// @homepageURL     https://greasyfork.org/scripts/431539-wikifeet-dark-theme
// @homepage        https://greasyfork.org/scripts/431539-wikifeet-dark-theme
// @supportURL      https://greasyfork.org/scripts/431539-wikifeet-dark-theme/feedback
// @require         https://cdn.jsdelivr.net/npm/[email protected]
// @match           *://*.wikifeet.com/*
// @run-at          document-start
// @inject-into     page
// ==/UserScript==

/* global Cookies */

(() => {
  const darkCookie = document.cookie.split(';').some((item) => item.includes('dark=true'))

  if (!darkCookie) {
    Cookies.set('dark', true)

    window.location.reload(false)
  }
})()