您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
在進入網頁時自動點擊彈幕設定按鈕
// ==UserScript== // @name 動畫瘋自動點擊彈幕設定 // @namespace http://tampermonkey.net/ // @version 1.1 // @description 在進入網頁時自動點擊彈幕設定按鈕 // @match https://ani.gamer.com.tw/animeVideo.php* // @grant none // ==/UserScript== (function() { 'use strict'; // 檢查 localStorage 中是否已經記錄過是否點擊過彈幕設定按鈕 if (!localStorage.getItem('danmuSettingClicked')) { // 檢查是否有彈幕設定按鈕 const danmuSettingButton = document.querySelector('#setting-danmu a'); if (danmuSettingButton) { // 點擊彈幕設定按鈕 danmuSettingButton.click(); // 將點擊記錄存入 localStorage localStorage.setItem('danmuSettingClicked', true); } } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址