Greasy Fork is available in English.
Toggle Twitter web dark mode by the hour
当前为
// ==UserScript==
// @name Twitter Auto Night Mode
// @namespace https://burakgarci.net
// @version 0.2
// @description Toggle Twitter web dark mode by the hour
// @author Burak Garcı
// @match https://twitter.com/*
// @icon https://www.google.com/s2/favicons?domain=twitter.com
// @grant GM_cookie
// @grant GM.cookie
// @run-at document-start
// ==/UserScript==
(function () {
'use strict';
var hour = new Date().getHours();
if (hour > 18 || hour < 8) {
GM.cookie.set({ name: 'night_mode', value: '1', path: '/', secure: true, domain: '.twitter.com' });
}
else {
GM.cookie.set({ name: 'night_mode', value: '0', path: '/', secure: true, domain: '.twitter.com' });
}
})();