您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
xdddd
当前为
- // ==UserScript==
- // @name Fix Youtube videos in Voxed.net
- // @namespace http://tampermonkey.net/
- // @version 1.0
- // @description xdddd
- // @author Mav3ricK
- // @match http://www.voxed.net/*
- // @grant none
- // ==/UserScript==
- window.onload = function ()
- {
- function move()
- {
- if(document.querySelector('.commentAttach') !== null)
- {
- import('https://code.jquery.com/jquery-3.4.1.min.js');
- var xd = $('.commentAttach');
- xd.css('border','none');
- xd.css('padding','0');
- xd.css('max-width','100%');
- if(xd.children().first().prop('tagName') == 'IFRAME')
- {
- xd.children().css('width','390');
- xd.children().css('height','243.75');
- xd.classList.remove("attach_video");
- }
- }
- setTimeout(move, 1000);
- }
- //v4 updated
- move();
- };