Remove controlslist=nodownload

Removes the attribute controlslist=nodownload of video tag.

当前为 2020-04-17 提交的版本,查看 最新版本

// ==UserScript==
// @name        Remove controlslist=nodownload
// @namespace   remove-controlslist-nodownload
// @version     4
// @description Removes the attribute controlslist=nodownload of video tag.
// @grant none
// @include *
// ==/UserScript==

Array.prototype.forEach.call(document.querySelectorAll('video[controlslist~=nodownload]'), function(el){
    el.controlsList.remove("nodownload");
});

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址