fidele007
11/12/2017 - 11:19 AM

Bypass 18+ age verification on all subreddits

Bypass 18+ age verification on all subreddits

// ==UserScript==
// @name        Bypass Reddit Age Verification
// @namespace   https://gist.github.com/fidele007/3ff4a2d8bcd722d12bf2bbb9330a64e1#file-bypass_reddit_age_verification-user-js
// @description Bypass 18+ age verification on all subreddits
// @include     *://www.reddit.com/over18*
// @version     1
// @grant       none
// ==/UserScript==
'use strict';
document.getElementsByName('over18').forEach(function (button) {
  if (button.value == "yes") {
    button.click();
    throw BreakException;
  }
});