4chan Tomorrow Theme Activator

Automatically enables the Tomorrow theme on 4chan so you don't have to manually change it ever again.

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         4chan Tomorrow Theme Activator
// @namespace    https://boards.4chan.org/
// @version      1.0
// @description  Automatically enables the Tomorrow theme on 4chan so you don't have to manually change it ever again.
// @author       Anon
// @match        https://boards.4chan.org/*
// @match        https://boards.4channel.org/*
// @run-at       document-start
// @icon         https://www.google.com/s2/favicons?sz=64&domain=4channel.org
// @license      MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    document.cookie = "ws_style=Tomorrow; path=/; Domain=.4channel.org;"
    document.cookie = "nws_style=Tomorrow; path=/; Domain=.4chan.org"
})();