您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Stupid Website
// ==UserScript== // @name PrivateStream Responsive Embed // @namespace http://tampermonkey.net/ // @version 1.1 // @description Stupid Website // @author BubbaGrace // @include http://privatestream.tv/* // @include http://*.privatestream.tv/* // @grant none // @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js // ==/UserScript== $(document).ready(function() { $('body').css({'width': '100%', 'height': 'auto', 'padding': '0', 'margin': '0'}); $('body > div:first-child').css({'width': '100%', 'height': 'auto', 'padding': '0', 'margin': '0'}); $('iframe').css({'width': '100%', 'height': 'auto', 'padding': '0', 'margin': '0'}); $('#my-video_wrapper').css({'width': '100%', 'height': 'auto', 'padding': '0', 'margin': '0'}); $('#my-video_aspect').css({'width': '100%', 'height': 'auto', 'padding': '0', 'margin': '0'}); $('#my-video_jwpsrv').css({'width': '100%', 'height': 'auto', 'padding': '0', 'margin': '0'}); $('#timer_full').css({'display': 'none', 'height': 'auto', 'padding': '0', 'margin': '0'}); });