bustoutmoz - Multi-Account Containers For Mozilla Links With Redirector

28/07/2025, 09:24:14

// ==UserScript==
// @name        bustoutmoz - Multi-Account Containers For Mozilla Links With Redirector
// @namespace   Eliot Cole Scripts
// @match       *://*/*
// @grant       none
// @version     1.0
// @license     MIT
// @author      eliotcole
// @description 28/07/2025, 09:24:14
// ==/UserScript==

(function(){
  var anchors = document.querySelectorAll('a[href*="mozilla.org"]');
  for (var i = 0; i < anchors.length; i++) {
    anchors[i].href = 'https://bustoutmoz.local////' + anchors[i].href;
  }
})();