Remove Youtube Annotation Using iv_load_policy=3

后端 未结 3 1198
我寻月下人不归
我寻月下人不归 2021-02-15 11:33

I am appending iv_load_policy=3 to the end of my YouTube URL to remove the annotations on the video, but I find it is not working. Looking on Google, it seems like

3条回答
  •  遥遥无期
    2021-02-15 11:48

    Use this in an extension

    $("div.video-annotations").css("display", "none");
    

    Or this in Stylebot extension

    div.video-annotations {display:none;}
    

提交回复
热议问题