VIDEO OPTIMIZATION

YouTube Ultra Buster v4.0

YouTube frequently updates its video player to inject anti-adblock modals, black screen delays, and unskippable double-ad chains.

  • Sub-15ms Speedup & Auto-Skip: Instantly detects playing ad elements and fast-forwards them at 16x speed while auto-clicking the "Skip Ad" button.
  • Instant Audio Mute: Automatically silences the video player for the micro-second an ad tries to play, ensuring you never hear jarring promotional audio.
  • Anti-Adblock Modal Neutralizer: Detects and neutralizes YouTube's "Ad blockers violate YouTube's Terms of Service" popup dialogues instantly, restoring regular playback.
CORE LOGIC content/youtube-buster.js
// Auto-skip sequencer
if (adContainer.length > 0) {
  videoPlayer.muted = true;
  videoPlayer.playbackRate = 16.0;
  videoPlayer.currentTime = 
    videoPlayer.duration || 9999;
  skipButton?.click();
}
Active & Operational
ANTI-MALWARE & POPUPS

Torrent & Streaming Popunder Defeater

High-risk sites like limetorrents.fun, free movie streaming sites, and anime portals use malicious JavaScript patterns that intercept genuine user clicks to spawn new background ad tabs.

  • Window.open Sandboxing: Intercepts window generation in the document's main JavaScript context. Any unrequested popup attempt is defused before a tab opens.
  • Full-Page Overlay Cleaner: Cleanses invisible transparent full-screen <div> overlays designed to hijack your first click anywhere on the page.
  • Programmatic Anchor Click Guard: Prevents fake hidden <a target="_blank"> elements created dynamically by scripts from firing unauthorized navigation.
MAIN WORLD DEFENSE content/popup-blocker.js
// Window open interceptor
const originalOpen = window.open;
window.open = function(url, target, features) {
  if (isSuspiciousAdPattern(url)) {
    console.warn('[AmpBlock] Blocked Popunder:', url);
    return null; // Silent neutralizer
  }
  return originalOpen.apply(this, arguments);
};
Click-Trap Defeater Armed
ZERO-CPU ENGINE

128+ Declarative Net Request (DNR) Rules

Unlike legacy ad blockers that examine every HTTP request using CPU-heavy JavaScript background listeners, AmpBlock delegates blocking to the browser's native C++ engine.

  • Zero Memory Leaks: Manifest V3 declarative rules execute entirely in the browser kernel without waking up the extension service worker.
  • Main-Frame Torrent Protection: Specific rule sets explicitly reject navigation to known malicious popunder redirect networks, even if a new tab were triggered.
  • Tracker Neutralization: Blocks Google Analytics, DoubleClick, Facebook Pixel, Taboola, Outbrain, Criteo, and 120+ ad telemetries before DNS resolution.
MANIFEST V3 KERNEL rules/rules.json
{
  "id": 105,
  "priority": 1,
  "action": { "type": "block" },
  "condition": {
    "urlFilter": "*adsterra*",
    "resourceTypes": ["main_frame", "sub_frame", "script", "xmlhttprequest"]
  }
}
128 Kernel Rules Loaded
PRECISION TOOLS

Visual Element Zapper & Anti-Adblock Defuser

Take complete control of what appears on your screen with our point-and-click surgical tool, plus automated anti-adblock mock globals.

  • HUD Target Framing: Hover over any annoying floating bar, sticky chat widget, or paywall prompt. A cyber-blue HUD highlights the element precisely.
  • Permanent Elimination: Click once and the element is excised from the page DOM instantly without reloading.
  • Mock Global Injection: Emulates safe ad network variables (such as adsbygoogle = [] and canRunAds = true) so news websites never know you're blocking ads.
SURGICAL TOOL content/element-zapper.js
// Cyber HUD targeting
target.style.outline = 
  '2px solid #00e5ff';
target.style.backgroundColor = 
  'rgba(0, 229, 255, 0.15)';
// Click to Zap:
target.remove();
Ready on Demand via Popup

Experience Clean Web Browsing

Download AmpBlock Pro now and enjoy true speed and privacy.