Greasy Fork

Gizmodo - Remove Recent Video

try to take over the world!

当前为 2017-12-29 提交的版本,查看 最新版本

// ==UserScript==
// @name         Gizmodo - Remove Recent Video
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       ericjuden
// @match        https://gizmodo.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var elements = document.getElementsByClassName("instream-native-video");
    var i = elements.length;

    while(i--){
        elements[i].parentNode.removeChild(elements[i]);
    }
})();