Force Vertix to run in production mode

Disables devTest to enable production mode and allow connectivity to vertix.io

  1. // ==UserScript==
  2. // @name Force Vertix to run in production mode
  3. // @version 0.1
  4. // @author dannytech
  5. // @match http://vertix.io/
  6. // @description Disables devTest to enable production mode and allow connectivity to vertix.io
  7. // @grant none
  8. // @namespace https://greasyfork.org/users/65245
  9. // ==/UserScript==
  10. (function() {
  11. 'use strict';
  12. devTest = false;
  13. })();