Dashvapes bypass age check

Bypass (annoying) age check on Dashvapes

  1. // ==UserScript==
  2. // @name Dashvapes bypass age check
  3. // @namespace sprremix
  4. // @version 0.1
  5. // @description Bypass (annoying) age check on Dashvapes
  6. // @author sprremix
  7. // @match https://www.dashvapes.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=dashvapes.com
  9. // @grant none
  10. // @run-at document-start
  11. // @license Unlicense
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16.  
  17. if (!document.cookie.includes("dv19")) {
  18. document.cookie = "dv19=1; expires=Tue, 19 Jan 2038 04:14:07 GMT; path=/;";
  19. location.reload();
  20. }
  21. })();