Youtube - Uncheck Autoplay checkbox (toggleButton)

Uncheck Autoplay checkbox at Youtube

  1. // ==UserScript==
  2. // @author tm1
  3. // @name Youtube - Uncheck Autoplay checkbox (toggleButton)
  4. // @version 1.0.0
  5. // @description Uncheck Autoplay checkbox at Youtube
  6. // @match https://www.youtube.com/*
  7. // @license GPL-2.0-or-later; http://www.gnu.org/licenses/gpl-2.0.txt
  8. // @run-at document-start
  9. // @grant none
  10. // @noframes
  11. // @namespace https://greasyfork.org/users/103208
  12. // ==/UserScript==
  13.  
  14. var chkbox = document.getElementById('toggleButton');
  15. chkbox.removeAttribute('checked');