background.js (508B)
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 file, 3 * You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 5 /* eslint-env webextensions */ 6 7 "use strict"; 8 9 browser.runtime.onUpdateAvailable.addListener(_details => { 10 // The New Tab built-in add-on is not designed to be updated at runtime. 11 // 12 // By listening to but ignoring this event, any updates will 13 // be delayed until the next browser restart. 14 });