Chrome Flags Reference

Chrome command line switches and startup flags for automation, headless mode, and debugging.

--allow-silent-push

What does --allow-silent-push do?

Allows Web Push notifications that do not show a notification.

Usage

CLILaunch Chrome with --allow-silent-push using CLI

chrome --allow-silent-push

PuppeteerLaunch Chrome with --allow-silent-push using Puppeteer

const browser = await puppeteer.launch({
  args: ['--allow-silent-push']
});

PlaywrightLaunch Chrome with --allow-silent-push using Playwright

const browser = await chromium.launch({
  args: ['--allow-silent-push']
});

SeleniumLaunch Chrome with --allow-silent-push using Selenium

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--allow-silent-push')

driver = webdriver.Chrome(options=options)