Age Restriction Bypass

Adds simple age no limiter and Do not track.

  1. // ==UserScript==
  2. // @name Age Restriction Bypass
  3. // @namespace http://agexdnt.41
  4. // @version 1.0
  5. // @description Adds simple age no limiter and Do not track.
  6. // @author FortyOne
  7. // @match *://*/*
  8. // @grant none
  9. // @noframes
  10. // @run-at document-start
  11. // @license MIT
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16.  
  17. function removeAgeRestriction() {}
  18.  
  19. window.addEventListener('load', removeAgeRestriction);
  20. if (navigator.doNotTrack === '1') {
  21. console.log('Do Not Track is enabled');
  22. }
  23. })();