12345678910111213141516171819202122232425262728293031323334353637383940 |
- /**
- * @license Copyright 2017 Google Inc. All Rights Reserved.
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
- * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
- */
- 'use strict';
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.DEFAULT_FLAGS = void 0;
- exports.DEFAULT_FLAGS = [
- // Disable built-in Google Translate service
- '--disable-features=TranslateUI',
- // Disable all chrome extensions
- '--disable-extensions',
- // Disable some extensions that aren't affected by --disable-extensions
- '--disable-component-extensions-with-background-pages',
- // Disable various background network services, including extension updating,
- // safe browsing service, upgrade detector, translate, UMA
- '--disable-background-networking',
- // Disable syncing to a Google account
- '--disable-sync',
- // Disable reporting to UMA, but allows for collection
- '--metrics-recording-only',
- // Disable installation of default apps on first run
- '--disable-default-apps',
- // Mute any audio
- '--mute-audio',
- // Disable the default browser check, do not prompt to set it as such
- '--no-default-browser-check',
- // Skip first run wizards
- '--no-first-run',
- // Disable backgrounding renders for occluded windows
- '--disable-backgrounding-occluded-windows',
- // Disable renderer process backgrounding
- '--disable-renderer-backgrounding',
- // Disable task throttling of timer tasks from background pages.
- '--disable-background-timer-throttling',
- // Disable background tracing (aka slow reports & deep reports) to avoid 'Tracing already started'
- '--force-fieldtrials=*BackgroundTracing/default/',
- ];
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmxhZ3MuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvZmxhZ3MudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7R0FJRztBQUNILFlBQVksQ0FBQzs7O0FBRUEsUUFBQSxhQUFhLEdBQTBCO0lBQ2xELDRDQUE0QztJQUM1QyxnQ0FBZ0M7SUFDaEMsZ0NBQWdDO0lBQ2hDLHNCQUFzQjtJQUN0Qix1RUFBdUU7SUFDdkUsc0RBQXNEO0lBQ3RELDZFQUE2RTtJQUM3RSw0REFBNEQ7SUFDNUQsaUNBQWlDO0lBQ2pDLHNDQUFzQztJQUN0QyxnQkFBZ0I7SUFDaEIsc0RBQXNEO0lBQ3RELDBCQUEwQjtJQUMxQixvREFBb0Q7SUFDcEQsd0JBQXdCO0lBQ3hCLGlCQUFpQjtJQUNqQixjQUFjO0lBQ2QscUVBQXFFO0lBQ3JFLDRCQUE0QjtJQUM1Qix5QkFBeUI7SUFDekIsZ0JBQWdCO0lBQ2hCLHFEQUFxRDtJQUNyRCwwQ0FBMEM7SUFDMUMseUNBQXlDO0lBQ3pDLGtDQUFrQztJQUNsQyxnRUFBZ0U7SUFDaEUsdUNBQXVDO0lBQ3ZDLGtHQUFrRztJQUNsRyxpREFBaUQ7Q0FDbEQsQ0FBQyJ9
|