Redirect Waze Map Editor in production to the beta

Forward any page loaded on the Waze production site towards its corresponding page on the beta WME

  1. // ==UserScript==
  2. // @name Redirect Waze Map Editor in production to the beta
  3. // @namespace https://tomputtemans.com/
  4. // @version 0.3
  5. // @description Forward any page loaded on the Waze production site towards its corresponding page on the beta WME
  6. // @author Glodenox
  7. // @include /^https:\/\/www\.waze\.com\/(?!user\/)(.{2,6}\/)?editor.*$/
  8. // @run-at document-start
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. window.location.replace(window.location.href.replace('https://www.waze.com', 'https://beta.waze.com'));