block autoplay

block autoplay from bilibili.com and youtube.com

As of 05/02/2024. See the latest version.

// ==UserScript==
// @name         block autoplay
// @namespace    http://tampermonkey.net/
// @version      2024-01-30
// @description  block autoplay from bilibili.com and youtube.com
// @author       Rickjoe
// @match        https://www.bilibili.com/video/*
// @match        https://www.youtube.com/*

// @defaulticon
// @grant        none
// @license MIT
// @run-at document-end

// ==/UserScript==

(function() {
    'use strict';
document.querySelector("#video").autoplay = false;
})();