whatfontis premium

removes blurred text and blocking elements so you can use (Commercial / Free Personal / Google Fonts) premium features in font search results

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         whatfontis premium 
// @namespace    https://greasyfork.org/en/users/10118-drhouse
// @version      1.1
// @description  removes blurred text and blocking elements so you can use (Commercial / Free Personal / Google Fonts) premium features in font search results 
// @match        https://www.whatfontis.com/*
// @require      https://code.jquery.com/jquery-3.7.0.min.js
// @require      https://greasyfork.org/scripts/451088-utils-library/code/Utils%20-%20Library.js?version=1097324
// @grant        GM_info
// @author       drhouse
// @license      CC-BY-NC-SA-4.0
// @icon         https://www.google.com/s2/favicons?sz=64&domain=whatfontis.com
// ==/UserScript==
/* global jQuery, $ */
this.$ = this.jQuery = jQuery.noConflict(true);
(function($){

    var names = $('.border-bottom-dotted.pb-0.bg-light.pb-1')
    $.each(names , function (index, value){
        $(this).remove()
    }); 

    var names2 = $("#loadertestblock > div > div").find('div')
    $.each(names2 , function (index, value){
        $(this).removeClass('blur')
    }); 

    var names3 = $('.aboutinlist.py-3')
    $.each(names3 , function (index, value){
        $(this).remove()
    }); 

    $("#display-options > div > div > form:nth-child(2) > button").remove()


    setInterval(function(){
        utils.waitForElement('.fade.show').then(function() {
            $("#dialog > div > div > button")[0].click()
        }) 
        utils.waitForElement('.modal.fadedisplaymodal.show').then(function() {
            $('.modal.fadedisplaymodal.show').find('button').click()
        }) 
    }, 1000); 


    $("body > div.content.standard.mb-3.mb-lg-5.pt-3.pt-lg-5.pb-5 > div > div > div.col-12.col-lg-9.display.px-lg-5.pb-5 > div.font-control.mb-4 > div.row.mb-5 > div:nth-child(2) > div:nth-child(2)").replaceWith($("body > div.content.standard.mb-3.mb-lg-5.pt-3.pt-lg-5.pb-5 > div > div > div.col-12.col-lg-9.display.px-lg-5.pb-5 > div.font-control.mb-4 > div:nth-child(5) > div.col-16.col-lg-16.p-3.pt-3"))

})(jQuery);