feat(youtube/overlay-buttons): now you can disable autoplay by long-pressing the always repeat button

This commit is contained in:
inotia00
2023-06-27 01:58:14 +09:00
parent 7f5be6241a
commit 475aeb95d3
5 changed files with 19 additions and 52 deletions

View File

@ -0,0 +1,7 @@
package app.revanced.patches.youtube.utils.fingerprints
import app.revanced.patcher.fingerprint.method.impl.MethodFingerprint
object PlayerPatchFingerprint : MethodFingerprint(
customFingerprint = { methodDef, _ -> methodDef.definingClass.endsWith("PlayerPatch;") && methodDef.name == "hidePlayerButton" }
)