All Projects → mikesteele → Dual Captions

mikesteele / Dual Captions

Licence: mit
🌐 Subtitles in two languages for YouTube, Netflix & Disney+

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Dual Captions

Dualsub Support
General purpose subtitle renderer
Stars: ✭ 163 (-0.61%)
Mutual labels:  netflix, youtube, chrome-extension
Piper
Browser extension that adds Picture in Picture support to YouTube, Netflix, Amazon Video, Twitch, Plex, and more!
Stars: ✭ 227 (+38.41%)
Mutual labels:  netflix, youtube, chrome-extension
Play next
Play Next in YouTube - Chrome Extension
Stars: ✭ 43 (-73.78%)
Mutual labels:  youtube, chrome-extension
Youtube Extension
🔴YouTube Extension🧰>80 Features ⭐Please document, code or donate📌Tidy📌Longest-standing(2012)(Users>350000)⋮🎞️🎛️🎧⚙️🎬🔊☕🎨🧩🧪📈⏯️(Player: Repeat Screenshot Rotate; Hide related video distraction. Always expand video Description. Playback speed. Video Quality bandwidth H.264 electricity. Player Size Full Window. Themes Customization. Statistics. Reverse Playlist YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube YouTube Youtube enhancer YouTube app YouTube video YouTube YouTube YouTube api v3 YouTube playback YouTube player VP8 VP9 AV1 vidIQ tubebuddy download adblocker adblock ads sponsorblock addon youtube music ⭐ youtube premium css css4 html5 ytdl youtube-dl invidious iridium ParticleCore youtube+ youtube++ youtube-plus maia-yt youtube nonstop youtube control center vlogger vlog h264ify h264 m.youtube.com music.youtube.com studio.youtube youtube mobile youtube studio ⭐ kids Vanced gaming.youtube.com gaming youtubecenter freetube lite-youtube-embed newpipe youtube-dl-gui mps-youtube nuclear pytube awesome youtubers youtube downloader 8k 4k 60fps 30fps youtubeexplode vidgear k-lite tubebuddy adobe apple ios iphone design simplify ffmpeg premiere designer annoyance youtube upload
Stars: ✭ 1,027 (+526.22%)
Mutual labels:  youtube, chrome-extension
Youtube time tracker
Chrome Extension that tracks time you spent on Youtube.
Stars: ✭ 84 (-48.78%)
Mutual labels:  youtube, chrome-extension
Raspberrycast
📺 Transform your Raspberry Pi into a streaming device. Videos can be sent from mobile devices or computers (Chrome extension).
Stars: ✭ 726 (+342.68%)
Mutual labels:  youtube, chrome-extension
React Native Netflix
React Native App from my video Course on Youtube
Stars: ✭ 778 (+374.39%)
Mutual labels:  netflix, youtube
Floating Player
Floating Player is a Google Chrome extension to watch videos while you browse the internet
Stars: ✭ 77 (-53.05%)
Mutual labels:  youtube, chrome-extension
Piptool
Add the Picture-in-Picture Functionality to YouTube, Netflix, Plex and other video broadcasting services in macOS Sierra
Stars: ✭ 337 (+105.49%)
Mutual labels:  netflix, youtube
Netflix Categories
Unlock Netflix Hidden Categories With This Browser Extension
Stars: ✭ 93 (-43.29%)
Mutual labels:  netflix, chrome-extension
Yi Note
YiNote browser extension - online video note taking tool
Stars: ✭ 96 (-41.46%)
Mutual labels:  youtube, chrome-extension
Web Search Navigator
Chrome/Firefox extension that adds keyboard shortcuts to Google, YouTube, Github, Amazon, and others
Stars: ✭ 532 (+224.39%)
Mutual labels:  youtube, chrome-extension
Darkness
Dark Themes for Popular Websites
Stars: ✭ 467 (+184.76%)
Mutual labels:  youtube, chrome-extension
Nflxmultisubs
Multiple Subtitles and Enhanced Experiences for Netflix Web App
Stars: ✭ 889 (+442.07%)
Mutual labels:  netflix, chrome-extension
Netflix To Srt
Rip, extract and convert subtitles to .srt closed captions from .xml/dfxp/ttml and .vtt/WebVTT (e.g. Netflix, YouTube)
Stars: ✭ 387 (+135.98%)
Mutual labels:  netflix, youtube
Skip Ad
A simple lightweight Chrome extension that automatically skips YouTube Ads.
Stars: ✭ 54 (-67.07%)
Mutual labels:  youtube, chrome-extension
Youtube Projects
This repository contains all the code I use in my YouTube tutorials.
Stars: ✭ 144 (-12.2%)
Mutual labels:  youtube, chrome-extension
Youtube Live Chat Flow
Chrome Extension for Flowing Chat Messages on YouTube Live
Stars: ✭ 309 (+88.41%)
Mutual labels:  youtube, chrome-extension
Upnext
Chrome Extension for streaming music from SoundCloud & YouTube
Stars: ✭ 320 (+95.12%)
Mutual labels:  youtube, chrome-extension
Daily Coding Problem
Series of the problem 💯 and solution ✅ asked by Daily Coding problem👨‍🎓 website.
Stars: ✭ 90 (-45.12%)
Mutual labels:  netflix, youtube

dual-captions
Subtitles in two languages for YouTube, Netflix, Disney+ & Kanopy

build

⬇️ Download on Chrome Web Store

📕 View latest release notes


How does it work?

Site integrations

This extension works by intercepting caption file requests, parsing them, and rendering them onto the page.

The extension runs an adapter on the host site repeatedly to get up-to-date information about the state of the host. Adapters are functions that use DOM queries. You can find them in site_integrations.

This extension does not use any internal APIs on the host site (eg. window.netflix.appContext) and it does not change any of the host sites own code. (eg. manipulating the host site's video player bundle)

Why not?

  • It is fragile to inject code into the host site bundle.
  • It is fragile to rely on internal APIs that may change.
  • Adapters that only rely on DOM selectors allow us to fix host site changes quickly.
  • Tiny adapters allow for many websites to be supported.

The adapter API is still a work in progress and will be documented in the future.

This "hands off" approach has UX trade-offs, like requiring the user select a language on the host site to have the caption file requested. I believe long-term stability is more important than UX.

Saving settings across sessions

Since browser_actions cannot persist any data after they are closed, this extension uses Redux middleware to store the user's settings with chrome.storage on any change. When the popup is re-opened, the store is re-hydrated with the user's saved store settings, and settings are injected into the content_script.

Manual Installation

Building the extension locally requires having Node and Yarn installed. See https://nodejs.org/ and https://yarnpkg.com/ for installation steps.

  1. Build the extension
chmod u+x ./build-extension.sh
./build-extension.sh
  1. Load the /build/ directory as an unpacked extension in chrome://extensions

You'll need to enable Developer Mode in chrome://extensions to do this. See https://developer.chrome.com/extensions/getstarted#unpacked for more information.

Run Tests

cd browser_action
yarn test

cd content_script
yarn test

cd site_integrations
yarn test

Thanks

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].