# Lenovo remove SmartConnect features (former Ready For) on some devices by disabling the related apps.
# Worked on moto g64y 5g
# Install SmartConnect apk downloaded from on the Internet
adb install ./SmartConnect.apk
# Find apk paths to "Ready For Engine" & "Ready For Video"
adb shell pm list packages -f | findstr "com.motorola.mobiledesktop"
adb shell pm list packages -f | findstr "com.motorola.motcameradesktop"
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
| # --- Layer 1: Toxic TLDs (High Abuse Rate) --- | |
| ||zip^ | |
| ||mov^ | |
| ||kim^ | |
| ||party^ | |
| ||cricket^ | |
| ||science^ | |
| ||gdn^ | |
| ||racing^ | |
| ||faith^ |
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
| # =================================================================== | |
| # AdGuard Home: DNS Infrastructure & Privacy Hardening Rules | |
| # Version: 2025-07-19 | |
| # Purpose: Block unnecessary/private DNS queries to upstream servers. | |
| # =================================================================== | |
| # === Section 1: Special-Use & Reserved Top-Level Domains (TLDs) === | |
| # RFC 6761 & 6762. These should not be resolved by public DNS. | |
| ||local^$dnsrewrite=NXDOMAIN | |
| ||localhost^$dnsrewrite=NXDOMAIN | |
| ||test^$dnsrewrite=NXDOMAIN |
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
| {$DOMAIN}:1234 { # external port | |
| log { | |
| level INFO | |
| output file {$LOG_FILE} { | |
| roll_size 10MB | |
| roll_keep 10 | |
| } | |
| } | |
| tls { |
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
| var _log = ""; | |
| function log(out) { | |
| console.log(out); | |
| _log += out + "\n"; | |
| } | |
| function getLog() { | |
| return _log; | |
| } |
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
| [ | |
| { | |
| "key": "Left", | |
| "label": "GoBack", | |
| "action": "javascript", | |
| "activeInInputs": true, | |
| "blacklist": "whitelist", | |
| "sites": "https://music.youtube.com/*", | |
| "code": "// Duration you want (seconds)\nvar duration= 3;\nvar v = document.getElementsByClassName('video-stream')[0];\nv.currentTime = v.currentTime - duration;", | |
| "sitesArray": [ |