"View Reddit in the app" mobile pop-up remover

Removes the "View Reddit in the app" when accessing reddit on mobile

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name            "View Reddit in the app" mobile pop-up remover
// @namespace       redditmobilepopupclose
// @include         http://*.reddit.com/*
// @include         https://*.reddit.com/*
// @description:en  Removes the "View Reddit in the app" when accessing reddit on mobile
// @version         1.0
// @run-at          document-start
// @grant           none
// @description Removes the "View Reddit in the app" when accessing reddit on mobile
// ==/UserScript==

(function() {
    'use strict';
    localStorage.setItem('bannerLastClosed', new Date());
})();