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 YT LIVE CHAT NEW TAB BUTTON | |
| // @name:pl Przycisk Live Chat YouTube | |
| // @namespace https://tampermonkey.net/ | |
| // @version 2.1 | |
| // @updateURL https://gist.githubusercontent.com/anonymousik/650e5887361a6c1196efaf7177812858/raw/ad3f28719f089e0aab7f84d12d798e32aee5c09f/ytlivechatbtn.js | |
| // @downloadURL https://gist.githubusercontent.com/anonymousik/650e5887361a6c1196efaf7177812858/raw/ad3f28719f089e0aab7f84d12d798e32aee5c09f/ytlivechatbtn.js | |
| // @description Adds a live chat button that opens chat in new window | |
| // @description:pl Dodaje przycisk czatu na żywo otwierający okno czatu w nowym oknie przeglądarki | |
| // @author AnonymousikFerro(🅽ɨɛʐռǟռʏ🅽ɨӄօʍʊ) |
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
| #!/bin/bash | |
| # ═══════════════════════════════════════════════════════════════════════════ | |
| # ⌐FERPLAYB༽ටX⫸ ULTIMATE OPTIMIZATION ENGINE v5.2 | |
| # ═══════════════════════════════════════════════════════════════════════════ | |
| # - YouTube button fix (pilot PlayBox → SmartTube) | |
| # - Chromecast Built-in optimization | |
| # - Memory management & GPU acceleration | |
| # - Display mirroring & cast services | |
| # ═══════════════════════════════════════════════════════════════════════════ |
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
| #!/system/bin/sh | |
| # ═══════════════════════════════════════════════════════════════════════════ | |
| # ANDROID PERFORMANCE TWEAKS - COMPREHENSIVE OPTIMIZATION | |
| # Personalized for Sagecom devices based on Android TV 9 software provided by the Play mobile network operator (PlayBox) ═══════════════════════════════════════════════════════════════════════════ | |
| # ═══════════════════════════════════════════════════════════════════════════ | |
| # HWUI (Hardware UI) RENDERING - COMPLETE SET | |
| # ═══════════════════════════════════════════════════════════════════════════ | |
| setprop debug.hwui.use_shader_cache true | |
| setprop debug.hwui.use_hardware_acceleration true |
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
| #!/system/bin/sh | |
| # ═══════════════════════════════════════════════════════════════════════════ | |
| # HWUI ULTRA BOOST - Based on Scribd Document Analysis | |
| # Target: Sagemcom DCTIW362 | Author: SecFerro Division | |
| # ═══════════════════════════════════════════════════════════════════════════ | |
| echo "Aplikowanie HWUI Ultra Optimizations..." | |
| # Core HWUI Properties (from Scribd doc) | |
| setprop debug.hwui.use_shader_cache true |
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
| #!/system/bin/sh | |
| # DEBLOAT - Aggressive RAM Recovery Script | |
| echo "════════════════════════════════════════════════════════════" | |
| echo " AGGRESSIVE RAM RECOVERY - DEBLOAT PROTOCOL" | |
| echo "════════════════════════════════════════════════════════════" | |
| echo "" | |
| # Lista aplikacji do WYŁĄCZENIA (nie odinstalowania - bezpieczne) | |
| BLOAT_APPS=( |
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
| adb shell am startservice com.google.android.apps.mediashell/.CastService |
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
| cat << 'EOF' > auto_pilot.py | |
| import os | |
| import sys | |
| import subprocess | |
| import time | |
| from pathlib import Path | |
| # === KONFIGURACJA AUTO-PILOTA === | |
| # Adres IP wpisany na sztywno lub pobierany z argumentów | |
| TARGET_DEVICE = "" |
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
| import os | |
| import sys | |
| import subprocess | |
| import time | |
| import urllib.request | |
| from pathlib import Path | |
| # ========================================== | |
| # KONFIGURACJA AUTOMATYCZNA | |
| # ========================================== |
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
| import os | |
| import sys | |
| import subprocess | |
| import time | |
| import urllib.request | |
| from pathlib import Path | |
| # ========================================== | |
| # KONFIGURACJA AUTOMATYCZNA | |
| # ========================================== |
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
| import os | |
| import sys | |
| import subprocess | |
| import time | |
| import urllib.request | |
| from pathlib import Path | |
| # ========================================== | |
| # KONFIGURACJA I TRWAŁOŚĆ | |
| # ========================================== |
OlderNewer