Turns off annotations on youtube videos
当前为
// ==UserScript==
// @name Youtube Turn Off Annotations
// @namespace Youtube
// @description Turns off annotations on youtube videos
// @include *youtube.com/watch*
// @version 1.0
// @grant none
// ==/UserScript==
var ytplayer = document.getElementById ("movie_player");
ytplayer.addEventListener("onStateChange", function(state){
document.querySelector('[aria-labelledby="ytp-menu-iv"]').click();
});