Tua video lên 10x
// ==UserScript==
// @name 10x Video Speed
// @namespace http://tampermonkey.net/
// @version 1.1
// @description Tua video lên 10x
// @author ChatGPT
// @match *://*/*
// @grant none
// ==/UserScript==
(function () {
'use strict';
const SPEED = 10.0;
function setSpeed() {
const videos = document.querySelectorAll('video');
videos.forEach(video => {
video.playbackRate = SPEED;
video.defaultPlaybackRate = SPEED;
});
}
// Áp dụng ngay
setSpeed();
// Web nào load video chậm vẫn sẽ bị ép 10x
setInterval(setSpeed, 500);
console.log("Video đang chạy ở", SPEED + "x");
})();