// ==UserScript== // @name 禁用浏览器播放器 // @license MIT // @namespace http://tampermonkey.net/ // @version 0.1 // @description 防止小孩偷偷看视频专用😂😂😂😂😂,可能会对部分页面有一定的影响 // @author Sharkor // @match *://*/* // @icon https://www.google.com/s2/favicons?sz=64&domain=vrmoo.net // @grant none // @require https://code.jquery.com/jquery-2.1.4.min.js // @downloadURL none // ==/UserScript== (function() { 'use strict'; setInterval(function(){ $("video").remove(); },1000); })();