Last active
December 7, 2023 14:49
-
-
Save legeiger/a15df64d378ba61750eee78ca4bd71dc to your computer and use it in GitHub Desktop.
fix pyload captcha box too small
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name PyLoad captacha view width & height = 500px | |
// @namespace https://gist.githubusercontent.com/legeiger/a15df64d378ba61750eee78ca4bd71dc/raw/2debd56ce611a166f444d8ca8f6bdc1b5b1efddc/pyload_captcha_hotfix.js | |
// @version 0.2 | |
// @description width & height = 500px | |
// @author https://github.com/legeiger | |
// @match http://192.168.1.101:8010/* | |
// @match http://debian-vm:8010/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=https://pyload.net/ | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
document.getElementById('cap_iframe_clipping').style.width = "500px"; | |
document.getElementById('cap_iframe_clipping').style.height = "500px"; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment