off annotazioni Youtube
当前为
// ==UserScript==
// @name annotazioni youtube off figuccio
// @namespace https://greasyfork.org/users/237458
// @description off annotazioni Youtube
// @include /^https?://www\.youtube\.com/.*$/
// @require https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
// @version 0.1
// @author figuccio
// @run-at document-end
// @grant none
// ==/UserScript==
setTimeout(
function(){
//activate the settings menu - without this we can't click anything else
document.querySelectorAll(".ytp-settings-button").item(0).click();
//annotations
if(document.querySelectorAll("div[role='menuitemcheckbox']")[1].getAttribute("aria-checked") == "true")
document.querySelectorAll("div[role='menuitemcheckbox']")[1].click();
}, 3000);
document.querySelectorAll(".ytp-settings-button").item(0).click();