您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Remove the "Share" buttons that prompt you to share on Facebook.
当前为
// ==UserScript== // @name 🐭️ MouseHunt - No Share Buttons // @version 1.1.1 // @description Remove the "Share" buttons that prompt you to share on Facebook. // @license MIT // @author bradp // @namespace bradp // @match https://www.mousehuntgame.com/* // @icon https://i.mouse.rip/mouse.png // @grant none // @run-at document-end // ==/UserScript== ((function () { 'use strict'; const addStyles = document.createElement('style'); addStyles.innerHTML = `.actionportfolio, .canShare .larryTip, .canShare, .journalactions a[data-share-type="journal"], .journalactions a[data-type="journal"], .pageSidebarView .fb-page, .socialLink, *[src="https://www.mousehuntgame.com//images/ui/buttons/share_green.gif"], #jsDialog-publishToOwnWall, .publishToWall, .socialBallots { display: none; } #OnboardArrow.onboardPopup.canShare .closeButton { left: 0; } `; document.head.appendChild(addStyles); })());