Source code
Revision control
Copy as Markdown
Other Tools
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
"use strict";
const { BrowserLoader } = ChromeUtils.importESModule(
"resource://devtools/shared/loader/browser-loader.sys.mjs"
);
const require = BrowserLoader({
window,
}).require;
const {
WebcompatTrackerDebugger,
} = require("resource://devtools/client/anti-tracking/webcompat-tracker-debugger.js");
window.AntiTracking = {
debugger: null,
async bootstrap({ commands }) {
this.debugger = new WebcompatTrackerDebugger(commands);
},
async destroy() {
if (this.debugger) {
await this.debugger.destroy();
this.debugger = null;
}
},
};