(Be Tested Daily) Bypass all youtube ads (skippable and non-skippable Ads) plus download youtube video on the fly
< Σχολιασμός για τον κώδικα Youtube Ad Cleaner(Include Non-Skippable Ads- works)
works well, but can you replace the design of the button with this(the previous one looks terrible in dark mode)? let css = document.createElement('style'); css.innerHTML = ` .myButton { font-size: 14px; font-weight: 300; /* Thinner font */ color: #eee; /* Extremely light gray text */ text-align: center; vertical-align: middle; border: 1px solid #555; /* Brighter Grey Border */ border-radius: 50px; /* Half spheres */ background-color: rgba(0, 0, 0, 0); /* Transparent Dark Grey Color (adjust the alpha value) */ height: 36px; /* Adjust the height as needed */ width: 135px; /* Adjust the width as needed */ padding: 0; /* Remove padding */ margin: 8px; } `;
Συνδεθείτε για να δημοσιεύσετε μια απάντηση.
works well, but can you replace the design of the button with this(the previous one looks terrible in dark mode)?
let css = document.createElement('style');
css.innerHTML = `
.myButton {
font-size: 14px;
font-weight: 300; /* Thinner font */
color: #eee; /* Extremely light gray text */
text-align: center;
vertical-align: middle;
border: 1px solid #555; /* Brighter Grey Border */
border-radius: 50px; /* Half spheres */
background-color: rgba(0, 0, 0, 0); /* Transparent Dark Grey Color (adjust the alpha value) */
height: 36px; /* Adjust the height as needed */
width: 135px; /* Adjust the width as needed */
padding: 0; /* Remove padding */
margin: 8px;
}
`;