🎉 欢迎访问GreasyFork.Org 镜像站!本镜像站由公众号【爱吃馍】搭建,用于分享脚本。联系邮箱📮

Greasy fork 爱吃馍镜像

Greasy Fork is available in English.

📂 缓存分发状态(共享加速已生效)
🕒 页面同步时间:2026/01/21 03:38:49
🔄 下次更新时间:2026/01/21 04:38:49
手动刷新缓存

navigator.plugins spoofing

去除网站的flash插件检测,实现html5播放。

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

You will need to install an extension such as Tampermonkey to install this script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

🚀 安装遇到问题?关注公众号获取帮助

公众号二维码

扫码关注【爱吃馍】

回复【脚本】获取最新教程和防失联地址

// ==UserScript==
// @name         navigator.plugins spoofing
// @namespace    aaaa007cn 
// @author      aaaa007cn 
// @include     http://play.baidu.com/*
// @include     http://fm.baidu.com/*
// @include     *://www.baidu.com/
// @include     http://5sing.kugou.com/*
// @include     http://www.beiwo.ac/*
// @include     http://www.dongting.com/*
// @include     http://fm.dongting.com/*
// @include     http://www.duole.com/*
// @include     *://music.douban.com/*
// @include     http://papa.me/*
// @include    http://www.1ting.com/*
// @include    http://www.9ku.com/*
// @include    http://www.666ccc.com/*
// @include    http://www.yue365.com/*
// @include    http://dict.cn/*
// @include    *://www.duonao.tv/*
// @include    http://www.webtoons.com/*
// @include    http://v.rongkuai.com/play.html?course_id=*
// @include    http://www.panda.tv/*
// @exclude    http://www.panda.tv/roomframe/*
// @include     http://www.kafan.cn/*
// @exclude   http://www.kafan.cn/home.php?mod=spacecp&ac=avatar
// @description    去除网站的flash插件检测,实现html5播放。
// @homepage    https://www.firefox.net.cn/read-49979-1#read_341320
// @version     4
// @grant       none
// @run-at      document-start
// ==/UserScript==
if (typeof wrappedJSObject === 'undefined') {
    Object.defineProperty(navigator, 'plugins', {
        get: function() {
            return {
                length: 0
            };
        }
    });
} else {
    Object.defineProperty(wrappedJSObject.navigator, 'plugins', {
        value: 0
    });
}