dismiss-newsletter-popup

Dismiss newsletter popups on content sites using DOM markers and keyboard input.

8|Updated May 13, 2026
One-click install
npx skills add https://github.com/bettyguo/browser-skills --skill dismiss-newsletter-popup
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: dismiss-newsletter-popup
Source: https://github.com/bettyguo/browser-skills/tree/main/skills/dismiss-newsletter-popup
Command: npx skills add https://github.com/bettyguo/browser-skills --skill dismiss-newsletter-popup

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Newsletter popups or sign-up prompts disrupt content viewing and automation workflows. This skill detects common overlay signals and dismisses them so interactions can continue without manual intervention.

Core Features & Use Cases

  • Detects newsletter/subscribe overlays using attributes such as class or id containing newsletter or subscribe, or aria-label markers.
  • Dismisses the overlay by clicking close controls or pressing Escape, after a brief wait for the popup to appear.
  • Use Case: On article or product pages, automatically close newsletter prompts to preserve reading flow and enable automated page interactions.

Quick Start

Dismiss the newsletter signup popup that appears after a short delay on a content page.

Frequently Asked Questions about dismiss-newsletter-popup

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automatically dismiss newsletter popups during browser automation?

It detects newsletter overlays by matching DOM attributes like class or id containing 'newsletter' or 'subscribe', and uses aria-label indicators to identify and dismiss the popup automatically.

How do I close a subscribe overlay that appears after scrolling on a blog?

You can close a subscribe overlay by applying a recipe that uses wait_for_dom_ready and try_each to click close controls or press the Escape key, dismissing the popup after a brief wait to verify it has been removed.

Can I clear newsletter sign-up prompts on retail sites without manual intervention?

Yes, you can clear newsletter sign-up prompts on retail sites by detecting overlay signals through DOM markers and using keypress actions, which preserves reading flow and enables automated page interactions without manual clicks.

What DOM markers are needed to detect and remove newsletter overlays?

The detection relies on DOM markers such as class or id attributes containing the words 'newsletter' or 'subscribe', along with aria-label indicators, to accurately identify and remove the overlay from the page.

Why does my automated page interaction fail when a newsletter popup appears after a delay?

Automated page interactions fail when newsletter popups appear after a delay because the overlay intercepts clicks and focus, requiring a wait step and dismissal sequence using try_each and press_key to restore control.