Removes the attribute controlslist=nodownload of video tag.
当前为
// ==UserScript==
// @name Remove controlslist=nodownload
// @namespace remove-controlslist-nodownload
// @version 3
// @description Removes the attribute controlslist=nodownload of video tag.
// @grant none
// @include *
// ==/UserScript==
Array.prototype.forEach.call(document.querySelectorAll('video[controlslist]'), function(el){
el.setAttribute('controlslist', '');
});