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

目前为 2019-09-02 提交的版本,查看 最新版本

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