// ==UserScript== // @name [ABP issue report] Hide visited report // @name:vi [Công cụ báo cáo vấn đề ABP] Ẩn link báo cáo đã xem // @namespace ABPVN // @match https://reports.adblockplus.org/digest // @grant none // @icon https://abpvn.com/icon.png // @version 1.1 // @author ABPVN // @run-at document-end // @description Hide visisted link in ABP issue report tools // @description:vi Ẩn link đã xem trên công cụ báo cáo vấn đề của ABP // @downloadURL none // ==/UserScript== var styleTag = document.createElement('style'); styleTag.innerHTML = '.cell-url a:visited {color: white}'; document.head.appendChild(styleTag);