block_google_analytics

block google analytics

  1. // ==UserScript==
  2. // @name block_google_analytics
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description block google analytics
  6. // @author hypnguyen1209
  7. // @match *://*/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. let a = document.createElement("script");
  14. a.type = "text/javascript";
  15. a.innerText = 'window["_gaUserPrefs"] = { ioo : function() { return true; } }';
  16. document.documentElement.insertBefore(a, document.documentElement.firstChild);
  17.  
  18. })();