Code Monkey home page Code Monkey logo

revanced-patches's Introduction

๐Ÿงฉ Patches

๐Ÿงฉ The unofficial Patch bundle provided by ReVanced and the community.

Looking for the JSON variant of this? Click here.

๐Ÿ’Š Patch ๐Ÿ“œ Description ๐Ÿน Target Version
always-autorepeat Always repeats the playing video again. 17.49.37
client-spoof Spoofs the YouTube or Vanced client to prevent playback issues. all
comments Hides components related to comments. 17.49.37
custom-branding Changes the YouTube launcher icon and name to your choice (defaults to ReVanced). all
custom-video-buffer Lets you change the buffers of videos. 17.49.37
custom-video-speed Adds more video speed options. 17.49.37
debugging Adds debugging options. all
disable-auto-captions Disable forced captions from being automatically enabled. 17.49.37
disable-auto-player-popup-panels Disable automatic popup panels (playlist or live chat) on video player. 17.49.37
disable-fullscreen-panels Disables video description and comments panel in fullscreen view. 17.49.37
disable-startup-shorts-player Disables playing YouTube Shorts when launching YouTube. 17.49.37
disable-zoom-haptics Disables haptics when zooming. all
downloads Enables downloading music and videos from YouTube. 17.49.37
enable-wide-searchbar Replaces the search icon with a wide search bar. This will hide the YouTube logo when active. 17.49.37
general-ads Removes general ads. 17.49.37
hdr-auto-brightness Makes the brightness of HDR videos follow the system default. 17.49.37
hide-album-cards Hides the album cards below the artist description. 17.49.37
hide-artist-card Hides the artist card below the searchbar. 17.49.37
hide-autoplay-button Hides the autoplay button in the video player. 17.49.37
hide-captions-button Hides the captions button on video player. 17.49.37
hide-cast-button Hides the cast button in the video player. all
hide-create-button Hides the create button in the navigation bar. 17.49.37
hide-crowdfunding-box Hides the crowdfunding box between the player and video description. 17.49.37
hide-email-address Hides the email address in the account switcher. 17.49.37
hide-endscreen-cards Hides the suggested video cards at the end of a video in fullscreen. 17.49.37
hide-info-cards Hides info-cards in videos. 17.49.37
hide-my-mix Hides mix playlists. 17.49.37
hide-shorts-button Hides the shorts button on the navigation bar. 17.49.37
hide-time-and-seekbar Hides progress bar and time counter on videos. 17.49.37
hide-video-buttons Adds options to hide action buttons under a video. 17.49.37
hide-watch-in-vr Hides the Watch in VR option in the player settings flyout panel. 17.49.37
hide-watermark Hides creator's watermarks on videos. 17.49.37
microg-support Allows YouTube ReVanced to run without root and under a different package name with Vanced MicroG. 17.49.37
minimized-playback Enables minimized and background playback. 17.49.37
old-quality-layout Enables the original video quality flyout in the video player settings 17.49.37
open-links-directly Bypasses URL redirects and opens links directly inside YouTube app. 17.49.37
premium-heading Shows premium branding on the home screen. all
remember-video-quality Adds the ability to remember the video quality you chose in the video quality flyout. 17.49.37
remove-player-button-background Removes the background from the video player buttons. 17.49.37
return-youtube-dislike Shows the dislike count of videos using the Return YouTube Dislike API. 17.49.37
seekbar-tapping Enables tap-to-seek on the seekbar of the video player. 17.49.37
settings Adds settings for ReVanced to YouTube. all
sponsorblock Integrate SponsorBlock. 17.49.37
swipe-controls Adds volume and brightness swipe controls. 17.49.37
tablet-mini-player Enables the tablet mini player layout. 17.49.37
theme Applies a custom theme. all
video-ads Removes ads in the video player. 17.49.37
๐Ÿ’Š Patch ๐Ÿ“œ Description ๐Ÿน Target Version
background-play Enables playing music in the background. 5.36.51
codecs-unlock Adds more audio codec options. The new audio codecs usually result in better audio quality. 5.36.51
compact-header Hides the music category bar at the top of the homepage. 5.36.51
custom-music-branding Changes the YouTube Music launcher icon and name to your choice (defaults to ReVanced Music). all
exclusive-audio-playback Enables the option to play music without video. 5.36.51
hide-get-premium Removes all "Get Premium" evidences from the avatar menu. 5.36.51
minimized-playback-music Enables minimized playback on Kids music. 5.36.51
music-microg-support Allows YouTube Music ReVanced to run without root and under a different package name. 5.36.51
music-video-ads Removes ads in the music player. 5.36.51
tasteBuilder-remover Removes the "Tell us which artists you like" card from the home screen. 5.36.51
upgrade-button-remover Removes the upgrade tab from the pivot bar. 5.36.51

๐Ÿ“ฆ com.vanced.android.youtube

๐Ÿ’Š Patch ๐Ÿ“œ Description ๐Ÿน Target Version
client-spoof Spoofs the YouTube or Vanced client to prevent playback issues. all

๐Ÿ“ JSON Format

This section explains the JSON format for the patches.json file.

The file contains an array of objects, each object representing a patch. The object contains the following properties:

key description
name The name of the patch.
description The description of the patch.
version The version of the patch.
excluded Whether the patch is excluded by default. If true, the patch must never be included by default.
options An array of options for this patch.
options.key The key of the option.
options.title The title of the option.
options.description The description of the option.
options.required Whether the option is required.
options.choices? An array of choices of the option. This may be null if this option has no choices. The element type of this array may be any type. It can be a String, Int or something else.
dependencies An array of dependencies, which are patch names.
compatiblePackages An array of packages compatible with this patch.
compatiblePackages.name The name of the package.
compatiblePackages.versions An array of versions of the package compatible with this patch. If empty, all versions are seemingly compatible.

Example:

[
  {
    "name": "remember-video-quality",
    "description": "Adds the ability to remember the video quality you chose in the video quality flyout.",
    "version": "0.0.1",
    "excluded": false,
    "options": [],
    "dependencies": [
      "integrations",
      "video-id-hook"
    ],
    "compatiblePackages": [
      {
        "name": "com.google.android.youtube",
        "versions": [
          "17.22.36",
          "17.24.35",
          "17.26.35",
          "17.27.39",
          "17.28.34",
          "17.29.34",
          "17.32.35",
          "17.33.42"
        ]
      }
    ]
  },
  {
    "name": "theme",
    "description": "Enables a custom theme.",
    "version": "0.0.1",
    "excluded": false,
    "deprecated": false,
    "options": [
      {
        "key": "theme",
        "title": "Theme",
        "description": "Select a theme.",
        "required": true,
        "choices": [
          "Amoled"
        ]
      }
    ],
    "dependencies": [
      "locale-config-fix"
    ],
    "compatiblePackages": [
      {
        "name": "com.google.android.youtube",
        "versions": []
      }
    ]
  },
  {
    "name": "custom-branding",
    "description": "Changes the YouTube launcher icon and name to your choice (defaults to ReVanced).",
    "version": "0.0.1",
    "excluded": false,
    "deprecated": false,
    "options": [
      {
        "key": "appName",
        "title": "Application Name",
        "description": "The name of the application it will show on your home screen.",
        "required": true,
        "choices": null
      },
      {
        "key": "appIconPath",
        "title": "Application Icon Path",
        "description": "A path to the icon of the application.",
        "required": false,
        "choices": null
      }
    ],
    "dependencies": [
      "locale-config-fix"
    ],
    "compatiblePackages": [
      {
        "name": "com.google.android.youtube",
        "versions": []
      }
    ]
  }
]

revanced-patches's People

Contributors

osumatrix avatar semantic-release-bot avatar sculas avatar thejeterlp avatar bogadana avatar leddaz avatar ponces avatar canny1913 avatar lisouseinaikyrios avatar shadow578 avatar johnconner122 avatar technikte avatar cnc-robert avatar aunali321 avatar finefindus avatar palmdevs avatar ushie avatar d4rkk3y avatar xafn avatar kazimmt avatar mchangrh avatar aliernfrog avatar inotia00 avatar josesilveiraa avatar j4k0xb avatar timschneeb avatar thebestnom avatar sandip93291 avatar reisxd avatar genericness avatar

Stargazers

โญ ๐Ÿพ avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.