Always video progress bar on anime1

Enable progress bar on anime1

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Always video progress bar on anime1
// @namespace    https://github.com/gslin/always-video-progress-bar-on-anime1
// @version      0.20210508.0
// @description  Enable progress bar on anime1
// @author       Gea-Suan Lin <[email protected]>
// @match        https://anime1.me/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
  'use strict';

  // Only \d+ will match.
  if (!document.location.pathname.match(/^\/\d+/)) {
    return;
  }

  const bar = document.createElement('div');
  bar.style = 'background: #000; display: block; height: 5px; margin: 0; padding: 0; position: relative; width: 100%;';

  const loadedbar = document.createElement('div');
  loadedbar.style = 'background: #777; display: block; height: 5px; margin: 0; padding: 0; position: absolute; width: 100%;';
  bar.appendChild(loadedbar);

  const progressbar = document.createElement('div');
  progressbar.style = 'background: red; display: block; height: 5px; margin: 0; padding: 0; position: absolute; width: 100%; z-index: 1;';
  bar.appendChild(progressbar);

  const vjscontainer = document.querySelector('.vjscontainer');
  vjscontainer.appendChild(bar);

  const ob = new window.MutationObserver(() => {
    const vjs = document.querySelector('.video-js');
    if (!vjs || !vjs.classList.contains('vjs-playing')) {
      return;
    }

    const v = document.querySelector('video.vjs-tech');
    if (!v) {
      return;
    }

    v.addEventListener('progress', () => {
      loadedbar.style.width = (100 * v.buffered.end(0) / v.duration) + '%';
    });
    v.addEventListener('timeupdate', () => {
      progressbar.style.width = (100 * v.currentTime / v.duration) + '%';
    });

    ob.disconnect();
  });

  ob.observe(document, {
    childList: true,
    subtree: true,
  });
})();