mirror of
https://github.com/kou029w/user-script.git
synced 2025-01-18 08:05:09 +00:00
13 lines
350 B
JavaScript
13 lines
350 B
JavaScript
// ==UserScript==
|
|
// @match https://www.youtube.com/*
|
|
// ==/UserScript==
|
|
"use strict";
|
|
|
|
function main() {
|
|
const { yt } = window;
|
|
if (yt) yt.config_.EXPERIMENT_FLAGS.global_spacebar_pause = false;
|
|
}
|
|
|
|
const script = document.createElement("script");
|
|
script.textContent = `"use strict";${main.name}();${String(main)}`;
|
|
document.head.append(script);
|