惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

A
About on SuperTechFans
小众软件
小众软件
WordPress大学
WordPress大学
Microsoft Azure Blog
Microsoft Azure Blog
Recent Announcements
Recent Announcements
博客园 - 三生石上(FineUI控件)
博客园_首页
N
Netflix TechBlog - Medium
IT之家
IT之家
H
Help Net Security
博客园 - 聂微东
Google DeepMind News
Google DeepMind News
罗磊的独立博客
T
Tailwind CSS Blog
F
Fortinet All Blogs
Hugging Face - Blog
Hugging Face - Blog
MongoDB | Blog
MongoDB | Blog
V
V2EX
量子位
云风的 BLOG
云风的 BLOG
爱范儿
爱范儿
博客园 - 司徒正美
The Cloudflare Blog
Engineering at Meta
Engineering at Meta

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I Built a Chrome Extension That Adds Playback Speed and P...
SHOTA · 2026-04-24 · via DEV Community

SHOTA

TVer is Japan's official free streaming platform — catch-up TV for every major broadcaster. It's the legal, ad-supported way to watch NHK, TBS, Fuji TV, and others without a cable subscription.

It's missing two features I use on every other video platform: playback speed control and Picture-in-Picture.

So I built TVer Plus to add them.

Why These Two Features?

Playback speed is the feature I miss most. I watch a lot of documentary and news content on TVer where 1.5x is comfortable and 2x is fine for anything I'm half-watching. The native player doesn't expose this. Most modern video platforms do. The HTML5 <video> element supports it natively — there's no technical reason TVer can't have it.

Picture-in-Picture is the API that lets a video float over other windows. Chrome has had native PiP support since 2018 via HTMLVideoElement.requestPictureInPicture(). Again: technically trivial, just not exposed in TVer's UI.

The Technical Approach

TVer uses a custom video player on top of a standard <video> element. The player controls are in a separate DOM layer. I inject a small floating control panel via content script that interacts directly with the underlying <video> element.

Finding the Video Element

TVer's player wraps the video in several layers of divs:

function findVideoElement(): HTMLVideoElement | null {
  // Try direct query first
  const video = document.querySelector<HTMLVideoElement>('video');
  if (video && video.src) return video;

  // TVer sometimes uses a video inside a shadow DOM or iframe
  // Check iframes
  for (const iframe of document.querySelectorAll('iframe')) {
    try {
      const iframeVideo = iframe.contentDocument?.querySelector<HTMLVideoElement>('video');
      if (iframeVideo && iframeVideo.src) return iframeVideo;
    } catch {
      // Cross-origin iframe — skip
    }
  }

  return null;
}

Enter fullscreen mode Exit fullscreen mode

TVer's player structure sometimes embeds the video in an iframe for ad isolation. The try-catch handles the cross-origin case (ad iframes from third-party domains).

Playback Speed Control

Setting playback rate is one line:

function setPlaybackRate(video: HTMLVideoElement, rate: number): void {
  video.playbackRate = rate;
  // Persist to storage so it survives page navigation
  chrome.storage.local.set({ preferredRate: rate });
}

Enter fullscreen mode Exit fullscreen mode

The interesting part is persistence. TVer is a SPA — navigating to a new episode triggers pushState without a full reload. The video element gets replaced with a new one. A MutationObserver on the player container re-applies the saved rate to new video elements:

function observePlayerContainer(): void {
  const observer = new MutationObserver(() => {
    const video = findVideoElement();
    if (!video) return;

    chrome.storage.local.get('preferredRate', ({ preferredRate }) => {
      if (preferredRate && preferredRate !== 1) {
        // New video — wait for metadata then apply rate
        video.addEventListener('loadedmetadata', () => {
          video.playbackRate = preferredRate;
        }, { once: true });
      }
    });
  });

  const container = document.querySelector('.player-container, [class*="Player"]');
  if (container) {
    observer.observe(container, { childList: true, subtree: true });
  }
}

Enter fullscreen mode Exit fullscreen mode

The { once: true } on the event listener prevents memory leaks — it auto-removes after firing once.

Picture-in-Picture

async function togglePictureInPicture(video: HTMLVideoElement): Promise<void> {
  if (document.pictureInPictureElement) {
    await document.exitPictureInPicture();
    return;
  }

  if (!document.pictureInPictureEnabled) {
    showToast('Picture-in-Picture is not supported in this browser');
    return;
  }

  try {
    await video.requestPictureInPicture();
  } catch (err) {
    // User gesture required — this should always be called from a click handler
    console.error('PiP failed:', err);
  }
}

Enter fullscreen mode Exit fullscreen mode

The requestPictureInPicture() call must happen in response to a user gesture (click). Trying to call it programmatically throws a NotAllowedError. The button in my UI is a direct click handler, which satisfies the gesture requirement.

Ad Handling

TVer plays ads before content. Setting playbackRate = 2 on an ad is technically possible but feels wrong (and might violate terms). I check if an ad is playing before applying speed:

function isAdPlaying(): boolean {
  // TVer marks ad periods with specific class names or data attributes
  return (
    document.querySelector('[class*="ad-overlay"]') !== null ||
    document.querySelector('[data-ad-playing="true"]') !== null
  );
}

function setPlaybackRate(video: HTMLVideoElement, rate: number): void {
  if (isAdPlaying()) return; // Don't speed up ads
  video.playbackRate = rate;
  chrome.storage.local.set({ preferredRate: rate });
}

Enter fullscreen mode Exit fullscreen mode

The Floating UI

The control panel is injected into the page DOM as a fixed-position element:

[0.75x] [1x] [1.25x] [1.5x] [2x]    [PiP]

Enter fullscreen mode Exit fullscreen mode

It's designed to be minimal — no branding, no settings pane, just the controls. The position is saved per-session so it stays where the user drags it.

What TVer Plus Does Not Do

I want to be clear about what this extension doesn't do: it does not remove ads, bypass DRM, download content, or do anything that would affect TVer's revenue. The whole point of TVer is that it's ad-supported free TV. The extension just adds quality-of-life playback controls that most streaming services already provide.

The extension is available on the Chrome Web Store.


Built with TypeScript. Content script injection into tver.jp pages. No external dependencies.