Skip to content

Instantly share code, notes, and snippets.

View HaloWang's full-sized avatar

Ce Wang HaloWang

  • Hangzhou, China
  • 04:06 (UTC +08:00)
View GitHub Profile
@fanzeyi
fanzeyi / twitter-darkmode.user.js
Last active October 15, 2025 01:51
Twitter Auto Dark Mode
// ==UserScript==
// @name Twitter auto darkmode
// @version 1
// @grant none
// @match *://twitter.com/*
// ==/UserScript==
window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', e => {
const isDarkMode = e.matches ? 1 : 0;
document.cookie = `night_mode=${isDarkMode};path=/;domain=.twitter.com;secure`;