Old Reddit Over18 Auto

Auto-set over18 cookie and auto-click continue button

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Old Reddit Over18 Auto
// @description  Auto-set over18 cookie and auto-click continue button
// @author       C89sd
// @namespace    https://greasyfork.org/users/1376767
// @version      0.1
// @match        https://old.reddit.com/*
// @noframes
// ==/UserScript==

document.cookie = 'over18=1;domain=.reddit.com;path=/;Max-Age=315360000';

if(location.href.startsWith('https://old.reddit.com/over18?'))
  document.querySelector('.c-btn-primary[type="submit"][name="over18"][value="yes"]')?.click();