返回首頁 

Greasy Fork is available in English.

動畫瘋廣告be quite!

將動畫瘋廣告改成黑色無聲影片、移除廣告超連結


安装此脚本?
// ==UserScript==// @name        動畫瘋廣告be quite!// @namespace   動畫瘋廣告be quite!// @version     2.6// @description 將動畫瘋廣告改成黑色無聲影片、移除廣告超連結// @author      fmnijk// @match       https://ani.gamer.com.tw/animeVideo.php?sn=*// @icon        https://www.google.com/s2/favicons?domain=ani.gamer.com.tw// @grant       none// @license     MIT// ==/UserScript==(window.onload = function() {'use strict';const $ = document.querySelector.bind(document);const $$ = document.querySelectorAll.bind(document);function muteAd() {const video = $("#ani_video_html5_api");if (video && video.getAttribute('src') !== 'https://fmnijk.github.io/black.mp4' && video.duration < 133) {video.setAttribute('src', 'https://fmnijk.github.io/black.mp4');}// 自動點擊同意分級制度const adultElement = $("#adult");if (adultElement) {adultElement.click();}}setInterval(muteAd, 100);})();