prefs.js (680B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 5 "use strict"; 6 7 const { PrefsHelper } = require("resource://devtools/client/shared/prefs.js"); 8 9 /** 10 * Shortcuts for accessing various network monitor preferences. 11 */ 12 exports.Prefs = new PrefsHelper("devtools.netmonitor", { 13 networkDetailsWidth: ["Int", "panes-network-details-width"], 14 networkDetailsHeight: ["Int", "panes-network-details-height"], 15 visibleColumns: ["Json", "visibleColumns"], 16 columnsData: ["Json", "columnsData"], 17 filters: ["Json", "filters"], 18 });