Greasy Fork is available in English.

Yahoo新聞去廣告

隱藏新聞間穿插的廣告

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name         Yahoo新聞去廣告
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  隱藏新聞間穿插的廣告
// @author       You
// @match        https://tw.news.yahoo.com/*
// @icon         https://www.google.com/s2/favicons?domain=yahoo.com
// @grant        none
// @require      http://code.jquery.com/jquery-3.2.1.min.js
// ==/UserScript==

(function() {
    'use strict';

    $('.native-ad-item').parent().hide();
})();