Skip to content

Instantly share code, notes, and snippets.

@yonixw
Last active February 16, 2020 20:23
Show Gist options
  • Save yonixw/f599f8300891fb75bb229fd801b9c932 to your computer and use it in GitHub Desktop.
Save yonixw/f599f8300891fb75bb229fd801b9c932 to your computer and use it in GitHub Desktop.
Vanced youtube disable search

Actual search. (changed all "search" to "search_{i}" and checked what changed the url in fiddler)

- const-string p2, "search"
+ const-string p2, "blocked_search"

Suggestion search (auto complete). 2 Places in same file

  • First place:
    :cond_3
    :goto_1
-    const-string v2, "https://suggestqueries.google.com"
    
    :cond_3
    :goto_1
+    const-string v2, "https://blocked.suggestqueries.google.com"
  • Second place:
- const-string v2, "https://suggestqueries.google.com/complete/search?ds=yt&hjson=t&oe=UTF-8&xssi=t"
+ const-string v2, "https://blocked.suggestqueries.google.com/complete/search?ds=yt&hjson=t&oe=UTF-8&xssi=t"
``
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment