您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removes videos from Pinterest.
// ==UserScript== // @name Pinterest No Videos // @description Removes videos from Pinterest. // @version 1.0.0 // @author petracoding // @namespace petracoding // @grant none // @license MIT // @include https://pinterest.com/* // @include https://www.pinterest.com/* // @include https://pinterest.*/* // @include https://www.pinterest.*/* // ==/UserScript== const interval = setInterval(function() { const videoLengthLabels = document.querySelectorAll('[data-test-id="PinTypeIdentifier"]'); if(videoLengthLabels.length < 1) return; [...videoLengthLabels].forEach(videoLengthLabel => { const pin = videoLengthLabel.closest('[data-grid-item="true"]'); if(pin) pin.removeChild(pin.firstChild); }); }, 1000);