Greasy Fork is available in English.
将Chrome令人糟糕的视频缩放算法改为最邻近插值算法
当前为
// ==UserScript==
// @name 解决Chrome视频模糊
// @namespace https://www.cccpserver.cf/
// @version 1.0
// @description 将Chrome令人糟糕的视频缩放算法改为最邻近插值算法
// @author HELPMEEADICE
// @license GPLv3
// @match *://*/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// 获取所有视频元素
var videos = document.querySelectorAll('video');
// 给每个视频元素添加滤镜
videos.forEach(function(video) {
video.style.filter = 'contrast(1)';
});
})();