An open API service indexing awesome lists of open source software.

https://github.com/brobert83/auto-click-youtube-continue-watching

Youtube fix for 'continue watching' feature
https://github.com/brobert83/auto-click-youtube-continue-watching

Last synced: 2 months ago
JSON representation

Youtube fix for 'continue watching' feature

Awesome Lists containing this project

README

          

Install tampermonkey

Add this script
```
// ==UserScript==
// @name Auto click continue watch on youtube
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @grant none
// @include https://www.youtube.com/*
// ==/UserScript==

(function () {
'use strict';

(function close() {
try {
document.getElementById("confirm-button").children[0].children[0].children[0].click();
document.getElementsByClassName("style-scope ytd-popup-container")[0].removeChild(document.getElementById("toast"))
} catch (e) {}
setTimeout(close, 1000);
})();

})();
```

Enjoy