Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name spygasm tools
- // @namespace http://tampermonkey.net/
- // @version 0.1
- // @description bypass spygasm fullscreen restriction
- // @author Anon from 2ch
- // @include httpS://*ru.spygasm.com*
- // @grant none
- // ==/UserScript==
- var bypass_fullscreen = setInterval(function() {
- var fl_button = document.getElementsByClassName('video_button button_fullscreen').item(0);
- if (fl_button != null) {
- fl_button._listeners.click = function f(e) {
- document.getElementsByTagName('video').item(0).requestFullscreen();
- };
- clearInterval(bypass_fullscreen);
- }
- }, 100);
Advertisement
Add Comment
Please, Sign In to add comment