DeArrow - Remove Dearrow Button

Dearrow - Remove Button from YouTube Extension Dearrow

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

/* ==UserStyle==
@name         DeArrow - Remove Dearrow Button
@version      20250311.23.27
@namespace    typpi.online
@description  Dearrow - Remove Button from YouTube Extension Dearrow
@homepageURL  https://github.com/Nick2bad4u/UserStyles
@supportURL   https://github.com/Nick2bad4u/UserStyles/issues
@author       Nick2bad4u
@license      UnLicense
@preprocessor stylus

@var          checkbox  hidebutton         "Hide Button"                   1
@var          checkbox  customdearrowcolor "Change Color of DeArrow Button Color"   0
@advanced     dropdown  dearrowcolor "      Dearrow Button Color"          {
    Default "Default" <<<EOT 0 EOT;
    Pink "Pink" <<<EOT 90 EOT;
    Green "Green" <<<EOT 250 EOT;
    Red "Red" <<<EOT 150 EOT;
    Cyan "Cyan" <<<EOT 340 EOT;
    Purple "Purple" <<<EOT 60 EOT;
    Blue "Blue" <<<EOT 20 EOT;
    Orange "Orange" <<<EOT 150 EOT;
    Yellow "Yellow" <<<EOT 200 EOT;
}

==/UserStyle== */
@-moz-document domain("youtube.com")
{
	if hidebutton
	{
		#video-title-link > button > img,
		.cbShowOriginal img.cbShowOriginalImage,
		.cbTitleButton svg,
		.style-scope.ytd-compact-video-renderer > a > h3 > button
		{
			display: none !important;
		}
	}

	if customdearrowcolor
	{
		.cbButton img
		{
			filter: hue-rotate(dearrowcolor deg) saturate(3) !important;
		}
	}
}