// ==UserScript== // @name Twitter 视频下载 // @namespace https://limbopro.com/ // @version 0.1.2 // @description Twitter 网页版视频下载 // @author limbopro // @license MIT // @match https://twitter.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=twitter.com // @grant none // @downloadURL none // ==/UserScript== (function () { 'use strict'; setInterval(() => { if (document.querySelectorAll('[data-testid="cellInnerDiv"]')) { let article = document.querySelectorAll('[data-testid="cellInnerDiv"]') for (let i = 0; i < article.length; i++) { if (!article[i].querySelector('a[href*=ssstwitter]')) { if (article[i].querySelector('[data-testid="videoPlayer"]')) { console.log(article[i].textContent); let a = document.createElement('a') a.href = 'https://ssstwitter.com/'; a.className = 'xdload' a.target = '_blank'; a.zIndex = '114154'; a.style = 'position:absolute;right:40px;top:20px;background-color:blue;color:aquamarine;z-index:114154;' a.textContent = "下载视频"; article[i].appendChild(a) } } } } }, 1000) })();