try to remove ads on imagefruit.com pages.
当前为 
// ==UserScript==
// @name         imagefruit ad blocker
// @namespace    https://www.imagefruit.com/
// @version      0.1
// @description  try to remove ads on imagefruit.com pages.
// @author       sftec
// @match        https://www.imagefruit.com/*
// @grant        none
// ==/UserScript==
(function() {
    'use strict';
     document.getElementById("layer").remove();
    document.getElementById("introOverlayBg").remove();
})();