Fanatical skip age confirmation

Removes the age verification prompt on Fanatical

  1. // ==UserScript==
  2. // @name Fanatical skip age confirmation
  3. // @description Removes the age verification prompt on Fanatical
  4. // @namespace bundlestars
  5. // @match *://*.fanatical.com/*
  6. // @version 2
  7. // @grant none
  8. // @run-at document-start
  9. // ==/UserScript==
  10.  
  11. (function () {
  12. "use strict";
  13.  
  14. try {
  15. localStorage.setItem("bsageGating", '{"success":true}');
  16. } catch (ignore) {}
  17. })();