您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Pauses first video on homepage and FYP load, meant for navigation.
// ==UserScript== // @name TikTok Homepage and FYP Disable Autoplay // @namespace Violentmonkey Scripts // @match https://www.tiktok.com/ // @match https://www.tiktok.com/foryou // @match https://www.tiktok.com/following // @icon https://www.google.com/s2/favicons?sz=64&domain=tiktok.com // @run-at document-start // @compatible chrome // @compatible firefox // @compatible opera // @compatible edge // @compatible safari // @version 0.2.0 // @author jcosentino (https://github.com/jcosentino/TikTok-Homepage-and-FYP-Disable-Autoplay) // @description Pauses first video on homepage and FYP load, meant for navigation. // @license MIT // ==/UserScript== (() => { const config = { childList: true, subtree: true }; const callback = () => { const firstVideo = document.getElementById('one-column-item-0')?.querySelector('video'); if(firstVideo){ firstVideo.pause(); MutationObserver.disconnect(); } }; const observer = new MutationObserver(callback); observer.observe(document, config); })();