Skip to content

Ekstensi untuk menyimpan episode dan menit terakhir saat menonton film atau series

Notifications You must be signed in to change notification settings

ferryops/series-tracker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Series Progress Tracker

Series Progress Tracker is a lightweight Chrome extension that remembers exactly which episode and timestamp you left off on any streaming site—handy when you bounce between different “gratis” streaming portals that rarely remember you. The extension quietly watches for the active <video> element, keeps your position up to date, and lets you reopen saved shows from a quick-access list directly in the popup.

Highlights

  • Auto progress tracking – detects the best candidate video on any tab and saves the minute / second mark in the background (every 30 seconds by default).
  • Manual episode control – quickly type the episode you are currently on and save it with one click or by pressing Enter.
  • Saved series hub – open the bottom sheet to view every show stored in chrome.storage, re-open it in a new tab, or delete the entry.
  • Connection-aware popup – surfaces live status such as “No video detected” or “Auto-save active” so you immediately know whether tracking is running.
  • Localization-ready UI – strings ship in English, Indonesian, and Simplified Chinese through the _locales directory.
  • Privacy-first – no analytics, network calls, or third-party backends; everything stays in your own browser profile.

Load the Extension Locally

  1. Clone or download this repository.
  2. Open chrome://extensions (or edge://extensions).
  3. Enable Developer mode in the top-right corner.
  4. Click Load unpacked and select the project directory (series-tracker/).
  5. Pin “Series Progress Tracker” to your toolbar for easy access.

Using the Popup

  1. Visit any streaming page that serves video via <video> tags.
  2. Start playing an episode—tracking begins automatically once a playable video is detected.
  3. Open the extension popup to see:
    • Page title, hostname, current minute counter, and tracking status indicator.
    • Auto-save toggle to pause/resume periodic saves.
    • Manual Episode input so you can bump progress even when the video is paused.
    • Save Episode button for quick manual checkpoints.
    • View All Series panel with search-like list of every tracked hostname, each showing Ep N • M min.
  4. Click the ↗ button beside any saved item to re-open that show in a new tab, or the × button to delete the stored progress.

Project Structure

.
├── content/          # Content scripts that detect videos and track playback
├── popup/            # Popup UI (modular JS, DOM helpers, localization)
├── popup.html/css/js # Popup entry point wired in manifest
├── icons/            # Browser action icons
├── _locales/         # en, id, zh_CN translations
└── manifest.json     # Chrome extension manifest (MV3)

Notable runtime pieces:

  • content/state.js, helpers.js, storage.js, tracker.js handle detection, periodic saving, and messaging back to the popup.
  • popup/*.js manages UI state, data formatting, panel rendering, and chrome storage access.

Privacy & Data

  • Storage: Uses chrome.storage.local, keyed by hostname or URL, so progress never leaves your machine.
  • Permissions: storage, activeTab, scripting, and <all_urls> host permissions to inject the tracker into arbitrary streaming sites.
  • No analytics, servers, or external requests are involved; feel free to inspect the code or fork it for your own workflows.

Localization

All user-facing strings live in _locales/{lang}/messages.json. To add a new language:

  1. Duplicate an existing locale folder.
  2. Update the translated message values.
  3. Set default_locale in manifest.json if you want a different fallback.

Contributing

Issues and pull requests are welcome! Interesting areas to explore:

  • Improving heuristics that detect “the main” video when multiple players exist.
  • Adding a compact history panel that groups by show title instead of hostname.
  • Surfacing sync/export options for people who hop between browsers.

Made for fellow streaming enthusiasts who keep too many tabs open and still want to remember where they left off.

About

Ekstensi untuk menyimpan episode dan menit terakhir saat menonton film atau series

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published