您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removes messages related to Netflix Household ("Your device isn’t part of the Netflix Household") on Netflix pages.
// ==UserScript== // @namespace https://gf.qytechs.cn/fr/users/868328-invincible812 // @name Netflix Household Message Remover // @name:fr Suppresseur du message de foyer Netflix // @version 1.0.1 // @description Removes messages related to Netflix Household ("Your device isn’t part of the Netflix Household") on Netflix pages. // @description:fr Supprime les messages liés au foyer Netflix ("Votre appareil ne fait pas partie du foyer Netflix") sur Netflix. // @author Invincible812 // @match https://www.netflix.com/* // @grant none // @license Free // @compatible firefox Violentmonkey // @compatible chrome Violentmonkey // @compatible brave Violentmonkey // @compatible opera Violentmonkey // ==/UserScript== (function() { 'use strict'; function removeNoFocusLockDivs(root = document) { const divs = root.querySelectorAll('div[data-no-focus-lock="true"]'); divs.forEach(div => div.remove()); } removeNoFocusLockDivs(); const observer = new MutationObserver(mutations => { for (const mutation of mutations) { mutation.addedNodes.forEach(node => { if (node.nodeType === 1) { if (node.matches?.('div[data-no-focus-lock="true"]')) { node.remove(); } else { removeNoFocusLockDivs(node); } } }); } }); observer.observe(document.body, { childList: true, subtree: true }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址