auto cookie accept popup
chrome extensions download
Dow
$(document).ready(function(){
setInterval(function() {
$("div.eom-buttons>div:nth-child(1)>ytd-button-renderer:nth-child(2)>yt-button-shape>button>yt-touch-feedback-shape>div>div:nth-child(2)").click();
// alert("sdfsdfsdfsdf");
}, 5000);
});
-------------------------------------------------------------------------
$(document).ready(function(){
// skip ad
setInterval(function() {
$("div.eom-buttons>div:nth-child(1)>ytd-button-renderer:nth-child(2)>yt-button-shape>button>yt-touch-feedback-shape>div>div:nth-child(2)").click();
$("button.ytp-ad-skip-button").click();
}, 3000);
// Play Now
setInterval(function() {
var Play_button = $("button.ytp-play-button").attr('data-title-no-tooltip')
if (Play_button == "Play") {
// alert("Play");
$("button.ytp-play-button").click();
}else{
// alert("Pause");
}
// alert("sdfsdfsdfsdf");
}, 5000);
});
--------------------------------------------
<button class="ytp-play-button ytp-button ct-active" aria-keyshortcuts="k" data-title-no-tooltip="Play" aria-label="Play keyboard shortcut k" title="Play (k)"><svg height="100%" version="1.1" viewBox="0 0 36 36" width="100%"><use class="ytp-svg-shadow" xlink:href="#ytp-id-109"></use><path class="ytp-svg-fill" d="M 12,26 18.5,22 18.5,14 12,10 z M 18.5,22 25,18 25,18 18.5,14 z" id="ytp-id-109"></path></svg></button>
Pause
إرسال تعليق