您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
url extractor dla Filman.cc w safari iOS dla apki 'Userscripts'
// ==UserScript== // @name iOS Filman.cc url extractor // @description url extractor dla Filman.cc w safari iOS dla apki 'Userscripts' // @version 1 // @grant none // @match https://filman.cc/* // @match https://www.filman.cc/* // @namespace https://gf.qytechs.cn/users/1079192 // ==/UserScript== window.addEventListener('load', function () { const links = document.getElementById('links'); if (links !== null) { const header = links.children[0]; const rows = links.children[1]; let colsDefinitions = undefined; if (header.childElementCount > 1) { colsDefinitions = header.children[header.childElementCount - 1]; } else { colsDefinitions = header.children[0]; } const newCol = document.createElement('th'); newCol.classList.add('header'); newCol.innerHTML = 'URL'; colsDefinitions.appendChild(newCol); for (let row of rows.children) { let link_data = undefined; try { link_data = JSON.parse(atob(row.getElementsByClassName('link-to-video')[0].children[0].getAttribute('data-iframe'))); } catch (error) { link_data = 'NO DATA'; } const newCol = document.createElement('td'); const link = document.createElement('input'); link.value = link_data.src; link.onclick = function () { this.select(); navigator.clipboard.writeText(this.value); }; newCol.appendChild(link); row.appendChild(newCol); } } });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址