您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Gets rid of all the hurdles and directly plays the video in an immersive player.
当前为
- // ==UserScript==
- // @name Swyter Tweaks for Steamcloud
- // @description Gets rid of all the hurdles and directly plays the video in an immersive player.
- // @match http://streamcloud.eu/*
- // @grant none
- // @version 2013.12.07
- // @author Swyter
- // @namespace https://greasyfork.org/users/4813
- // ==/UserScript==
- if(btn=document.getElementById("btn_download"))
- {
- /* the countdown is capped server-side -- that's actually pretty good */
- btn.addEventListener("DOMSubtreeModified",function(e){
- if (e.target.classList.contains("blue"))
- {
- console.log("Go!",e); e.target.click();
- }
- });
- }
- else
- {
- /* fantastic, heroic, huge, mad skills right here! */
- document.getElementById("turnon").click();
- /* get rid of the huge useless thing on the top and avoid scrolling */
- (header=document.getElementById("header")).parentNode.removeChild(header);
- (footer=document.getElementById("footer")).parentNode.removeChild(footer);
- }