Bypass Reddit Age Verification

Bypass 18+ age verification on all subreddits

2017-11-12 기준 버전입니다. 최신 버전을 확인하세요.

// ==UserScript==
// @name        Bypass Reddit Age Verification
// @namespace   https://greasyfork.org
// @description Bypass 18+ age verification on all subreddits
// @include     *://www.reddit.com/over18*
// @version     1
// @grant       none
// ==/UserScript==
(function(){
  "use strict";
  document.getElementsByName('over18').forEach(function (button) {
    if (button.value == "yes") {
      button.click();
      throw BreakException;
    }
  });
})();