b站去除视频分享按钮。
// ==UserScript==
// @name b站去除视频分享按钮
// @namespace http://tampermonkey.net/
// @version 0.1
// @description b站去除视频分享按钮。
// @author Liu-jc123
// @match *://*.bilibili.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=bilibili.com
// @grant none
// @license MIT
// ==/UserScript==
('load',function() {
'use strict';
var elementToRemove = document.querySelector('.video-share-wrap');
if (elementToRemove) {
elementToRemove.setAttribute('style', 'display: none;');
} else {
console.log("Element not found.");
}
})();