ycktw / LTN No AD

// ==UserScript==
// @name         LTN No AD
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  No AD anymore
// @author       ycktw
// @match        http://news.ltn.com.tw/news/life/breakingnews/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js
// @updateURL    https://openuserjs.org/meta/ycktw/LTN_No_AD.meta.js
// @grant        none
// ==/UserScript==

$("div").each(function() {
    var str = $(this).prop("id");
    if (str === "") return true;
    if (str.indexOf("google_ads") != -1)
        $(this).remove();
});
$("div").each(function() {
    var str = $(this).prop("class");
    if (str === "") return true;
    if (str.indexOf("hotnewsad") != -1 || str.indexOf("ad_") != -1)
        $(this).remove();
});