您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Resume Where You Left on puhutv
// ==UserScript== // @name puhutv Resume Where You Left // @namespace puhutvResumeWhereYouLeft // @version 1.0.0 // @description Resume Where You Left on puhutv // @author Runterya // @homepage https://github.com/Runteryaa // @match https://puhutv.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=puhutv.com // @grant none // @license MIT // @compatible chrome // @compatible edge // @compatible firefox // @compatible opera // @compatible safari // ==/UserScript== console.log("puhutvResumeWhereYouLeft"); window.addEventListener('load', () => { setInterval(() => { const vid = document.querySelector('#dyg-player-new-player_html5_api'); const videoUrl = window.location.href; localStorage.setItem(videoUrl, vid.currentTime); console.log("Watch time saved:", vid.currentTime); }, 10000); const videoUrl = window.location.href; const savedWatchedTime = localStorage.getItem(videoUrl); if (savedWatchedTime) { const vid = document.querySelector('#dyg-player-new-player_html5_api'); vid.currentTime = parseFloat(savedWatchedTime); console.log("Resumed from", savedWatchedTime); } });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址