您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removes the skip indicators on Odysee ("+10" or "-10")
// ==UserScript== // @name Odysee: remove "+10"/"-10" skip indicators // @match https://odysee.com/* // @description Removes the skip indicators on Odysee ("+10" or "-10") // @version 1.0.0 // @grant none // @namespace com.odysee.annoying.timeskips // @author https://gf.qytechs.cn/en/users/728793-keyboard-shortcuts // @icon https://www.google.com/s2/favicons?sz=128&domain=odysee.com // @license MIT // ==/UserScript== /* jshint esversion: 6 */ (function() { const STYLE_TAG_ID = 'odysee-disable-skip-overlays'; setInterval(function() { if (document.getElementById(STYLE_TAG_ID) === null) { // not installed yet const styleTag = document.createElement('style'); styleTag.setAttribute('id', STYLE_TAG_ID); styleTag.innerText = 'div.vjs-overlay.vjs-overlay-seeked { display: none; }'; const body = document.querySelector('body'); if (body) { body.appendChild(styleTag); } } }, 1000); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址