ad

test

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         ad
// @namespace    test
// @version      0.1
// @match        https://lovehug.net/*/*
// @description test
// @grant        none
// ==/UserScript==


$(function(){
    setInterval(function(){
        $("iframe").remove();
    },500);
});