This repository was archived by the owner on Oct 26, 2024. It is now read-only.
File tree 2 files changed +15
-0
lines changed
app/src/main/java/app/revanced/integrations/youtube
2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -218,6 +218,18 @@ public ShortsFilter() {
218
218
new ByteArrayFilterGroup (
219
219
Settings .HIDE_SHORTS_SUPER_THANKS_BUTTON ,
220
220
"yt_outline_dollar_sign_heart_"
221
+ ),
222
+ new ByteArrayFilterGroup (
223
+ Settings .HIDE_SHORTS_USE_TEMPLATE_BUTTON ,
224
+ "yt_outline_template_add_"
225
+ ),
226
+ new ByteArrayFilterGroup (
227
+ Settings .HIDE_SHORTS_UPCOMING_BUTTON ,
228
+ "yt_outline_bell_"
229
+ ),
230
+ new ByteArrayFilterGroup (
231
+ Settings .HIDE_SHORTS_GREEN_SCREEN_BUTTON ,
232
+ "greenscreen_temp"
221
233
)
222
234
);
223
235
}
Original file line number Diff line number Diff line change @@ -221,6 +221,9 @@ public class Settings extends BaseSettings {
221
221
public static final BooleanSetting HIDE_SHORTS_TAGGED_PRODUCTS = new BooleanSetting ("revanced_hide_shorts_tagged_products" , TRUE );
222
222
public static final BooleanSetting HIDE_SHORTS_LOCATION_LABEL = new BooleanSetting ("revanced_hide_shorts_location_label" , FALSE );
223
223
public static final BooleanSetting HIDE_SHORTS_SAVE_SOUND_BUTTON = new BooleanSetting ("revanced_hide_shorts_save_sound_button" , TRUE );
224
+ public static final BooleanSetting HIDE_SHORTS_USE_TEMPLATE_BUTTON = new BooleanSetting ("revanced_hide_shorts_use_template_button" , TRUE );
225
+ public static final BooleanSetting HIDE_SHORTS_UPCOMING_BUTTON = new BooleanSetting ("revanced_hide_shorts_upcoming_button" , TRUE );
226
+ public static final BooleanSetting HIDE_SHORTS_GREEN_SCREEN_BUTTON = new BooleanSetting ("revanced_hide_shorts_green_screen_button" , TRUE );
224
227
public static final BooleanSetting HIDE_SHORTS_SEARCH_SUGGESTIONS = new BooleanSetting ("revanced_hide_shorts_search_suggestions" , FALSE );
225
228
public static final BooleanSetting HIDE_SHORTS_STICKERS = new BooleanSetting ("revanced_hide_shorts_stickers" , TRUE );
226
229
public static final BooleanSetting HIDE_SHORTS_SUPER_THANKS_BUTTON = new BooleanSetting ("revanced_hide_shorts_super_thanks_button" , TRUE );
You can’t perform that action at this time.
0 commit comments