Greasy Fork

Greasy Fork is available in English.

国内主流视频网站去Logo

腾讯、优酷、爱奇艺、B站直播

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         国内主流视频网站去Logo
// @namespace    http://tampermonkey.net/
// @version      0.7
// @description  腾讯、优酷、爱奇艺、B站直播
// @author       初七
// @match        http*://v.youku.com/*
// @match        http*://www.iqiyi.com/*
// @match        http*://v.qq.com/*
// @match        http*://www.nfmovies.com/*
// @match        http*://*.bilibili.com/*
// @match        http*://*.yanetflix.com/*
// @resource     https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js
// @grant        none
// ==/UserScript==
window.addEventListener('load',function(){
    //页面的全部资源加载完才会执行,包括图片,视频

    var arr = [".iqp-logo-top",
               ".iqp-logo-bottom",
               ".txp_waterMark_pic",
               ".spv-logo",
               ".dplayer-logo",
               ".logo-new",
               ".web-player-icon-roomStatus",
               ".leleplayer-logo",
               ".logo-new"
              ];
    for(var i=0;i<arr.length;i++){
        document.querySelectorAll(arr[i]).forEach(function(item,index,arr){item.style.display='none';});
        console.log("页面加载执行成功");
    }
})