This file contains hidden or 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 Twitch — hide dark overlay | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.0 | |
| // @description скрывает оверлей блокировщик | |
| // @author You | |
| // @match https://www.twitch.tv/* | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or 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 YouTube — скрыть старые видео | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.3 | |
| // @description Скрывает видео старше 1 года | |
| // @author You | |
| // @match https://www.youtube.com/* | |
| // @grant none | |
| // ==/UserScript== |
This file contains hidden or 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
| <?php | |
| error_reporting(E_ALL); | |
| set_time_limit(0); | |
| date_default_timezone_set('Etc/GMT-3'); | |
| require_once __DIR__ . '/functions.php'; | |
| # Функции для работы с PDO SqLite | |
| require_once __DIR__ . '/_INIL_connectLite.php'; | |
| require_once __DIR__ . '/vendor/autoload.php'; | |
| ini_set('memory_limit', '5024M'); | |
| timeRun(); |
This file contains hidden or 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
| <?php | |
| error_reporting(E_ALL); | |
| set_time_limit(0); | |
| date_default_timezone_set('Etc/GMT-3'); | |
| require_once __DIR__ . '/functions.php'; | |
| # Функции для работы с PDO SqLite | |
| require_once __DIR__ . '/_INIL_connectLite.php'; | |
| require_once __DIR__ . '/vendor/autoload.php'; | |
| ini_set('memory_limit', '5024M'); | |
| timeRun(); |