WordPress OSINT, maintenance or security needs? Reach out!
TLDWP

Plugin: optimize-more (Used by 6 domains)

Optimize More!

👤 Arya Dhiratara 📦 v2.0.3

A ‘Do It Yourself’ WordPress Page Speed Optimization Pack.

Optimizing web pages is really just about controlling how assets are delivered.

Optimize your site further. Load faster on GTmetrix, Get better scores on Google Page Speed Insight.

Control your CSS & JavaScripts Delivery: Load CSS Asynchronously, Delay CSS & JavaScript until User Interaction, Remove Unused CSS & JavaScript Files, Preload Critical CSS & JavaScript, Defer JavaScripts, and more.

You can choose each CSS & JavaScripts individually and what type of execution is required per each post types.

This plugin inspired by the mighty Flying Scripts from Gijo Varghese. Using HTML Dom Parser to manipulate your page’s HTML, so we can simply use the keyword of the assets to target them.

Main Features

  • Load CSS Asynchronously — load any CSS file(s) asynchronously on selected post/page types.

  • Delay CSS and JavaScripts until User Interaction — delay any CSS/JavaScripts load until user interaction on selected post/page types.
    Note:

    • By default, the delay JavaScripts and CSS features are configured to user interaction based. You can change that using filter.
    • If you prefer to use ‘exclusions’, you can simply delay all JavaScripts using “.js” keywords, and use provided filter to exclude specific JavaScripts.
  • Defer JavaScripts — defer loading any JavaScript file(s) on selected post/page types.

  • Advance Defer JavaScripts — hold any JavaScript file(s) load until everything else has been loaded. Adapted from the legendary varvy’s defer JavaScripts method *recommended for defer loading 3rd party scripts like ads, pixels, and trackers

  • Preload Critical CSS, JavaScripts, and Font Files — preload any critical CSS/JavaScript/Font file(s) on selected post/page types.

  • Inline CSS and JavaScript Files — inline any critical CSS/JavaScript file(s) on selected post/page types. *warning: Inlining multiple / large files might slow down your site’s performance. Enabling this without using a caching system is generally not recommended.

  • Remove Unused CSS and JavaScripts Files — remove any unused CSS/JavaScripts file(s) on selected post/page types.

Use case:

  • Have CSS files that are only be used in the below the fold area? Delay them.
  • Have JavaScripts files that are not required in initial page rendering? Delay them.
  • Have CSS files that are used in the above the fold area? Preload them.
  • Have JavaScripts files such as jQuery that are needed to be load since the beginning? Preload them.
  • Have CSS files that are critical for above the fold area? Inline them.
  • Need to remove “Eliminate Render Blocking Resources” warnings on Google Page Speed Insights? Async, Defer, Inline, or Preload them.

Other Features

  • Load Gutenberg CSS conditionally — This feature will make the combined CSS (wp-block-library) removed and your page will only load the CSS of each block that you use on the page (and only if you use one of the core blocks!). Each CSS of the core blocks will only get enqueued when the block gets rendered on a page. This will save you from worrying if you still need to use the native Gutenberg core blocks in some of your pages.
    Note: the inline “global-styles” will also only load if you use one of the core blocks when you combine this feature with the Remove FSE Global Styles feature.

  • Remove FSE Global Styles — Remove WP “global-styles-inline-css”. Note: this will still conditionally loaded if you enable Load Gutenberg CSS conditionally feature.

  • Remove SVG Duotone Filter.

  • Filter Google Fonts — Filter the Google Font Characters to use most common characters only. In most font families, this will significantly reduce the font file size. *remember to use the web-safe font that is most similar to the font you are using as the font family fallback or you can simply modify the default character using the provided filter.

  • Combined Google Fonts — Combine google fonts css into one single line *only works for google font url(s) that are using the latest Google Font API (css2).

  • Select Font Display — Choose the best google fonts’ font-display strategy for your website.

  • Remove Passive Listener Warnings — Remove the “Does not use passive listeners to improve scrolling performance” warning on Google PageSpeed Insights

  • Prefetch Pages — Prefetch in view links so visitors can switch pages (more) instantly. *based on Gijo’s Flying Pages

  • Optimize WC Cart Fragments — Disable WC Cart Fragments, only when it’s empty. *based on Optimocha’s (Barış Ünver) Disable Cart Fragments

  • Remove WooCommerce Blocks CSS.

  • Disable jQuery Migrate.

  • Disable WP Embeds.

  • Disable WP Emojis.

  • Lazyload, Preload, and More — Add Lazyload, Preload, and More features. This is a non JavaScript version of Lazyload, preload, and more. *lazyload applied for images/iframes tag only. if you need to lazyload css background images, use the Lazyload, preload, and more plugin instead.

    • Control your images and iframes delivery
    • Automatically preload featured images
    • Add images dimensions (also able to add SVG images dimensions)

 
A simple tutorial of how to use this plugin: How to use Optmize More Plugin (Indonesian Version: Cara mempercepat loading WordPress dengan plugin Optimize More).

Big thanks to Gijo Varghese, without his codes in Flying Scripts, I can never be able to build this plugin. Thanks Gijo! 🙂

Credits

  • Gijo Varghese for his codes in Flying Scripts and Flying Pages
  • Barış Ünver for his codes in Disable Cart Fragments

Disclaimer

  • This plugin should works well with any caching plugins.

  • This plugin only adds 1 extra row to your database. And it will self delete upon uninstallation.

  • I built this plugin to optimize my Clients’ site. And I can get a very good scores even before activating my caching plugin.

Available Filters

To change the delay configuration:

By default, the delay JavaScripts and CSS are configured to user interaction based. But you can change that using filter:

For delay CSS, e.g.:

add_filter( 'om_delay_css_time', function($om_delay_css_time) {
    return '3*1000';
} );

For delay JavaScripts, e.g.:

add_filter( 'om_delay_css_time', function($om_delay_css_time) {
    return '3*1000';
} );

or if you want to change it for specific page only:

For delay CSS, e.g.:

add_filter( 'om_delay_css_time', function($om_delay_css_time) {
    if (is_front_page()) {
        return '3*1000';
    }
    else {
        return $om_delay_css_time;
    }
} );

For delay JavaScripts e.g.:

add_filter( 'om_delay_js_time', function($om_delay_js_time) {
    if (is_front_page()) {
        return '3*1000';
    }
    else {
        return $om_delay_js_time;
    }
} );

To use Exclusions instead of Inclusions

If you prefer to use ‘exclusions’ method, simply delay all JavaScript files using “.js” keyword, and use the provided filters to exclude specific JavaScript files:

Example filter to add exclude list for the whole site (general):

add_filter('delay_js_exclude_list_default', function($exclusion_list) {
    $exclusion_list[] = 'jquery-core';
    $exclusion_list[] = 'js-cookie';
    $exclusion_list[] = 'wc-add-to-cart-js';
    return $exclusion_list;
});

Example filter to add exclude list for Homepage option:

add_filter('delay_js_exclude_list_front_page', function($exclusion_list) {
    $exclusion_list[] = 'jquery';
    $exclusion_list[] = 'custom-js';
    return $exclusion_list;
});

Example filter to add exclude list for Custom Page option:

add_filter('delay_js_exclude_list_pages', function($exclusion_list) {
    $exclusion_list[] = 'jquery';
    $exclusion_list[] = 'another-js';
    return $exclusion_list;
});

Example filter to add exclude list for Archives option:

add_filter('delay_js_exclude_list_archives', function($exclusion_list) {
    $exclusion_list[] = 'jquery';
    $exclusion_list[] = 'another-js';
    return $exclusion_list;
});

Example filter to add exclude list for Singular option:

add_filter('delay_js_exclude_list_singular', function($exclusion_list) {
    $exclusion_list[] = 'jquery';
    $exclusion_list[] = 'another-js';
    return $exclusion_list;
});

Example filter to add exclude list for WooCommerce Products option:

add_filter('delay_js_exclude_list_wc_product', function($exclusion_list) {
    $exclusion_list[] = 'jquery';
    $exclusion_list[] = 'another-js';
    return $exclusion_list;
});

Example filter to add exclude list for WooCommerce Archives option:

add_filter('delay_js_exclude_list_wc_archives', function($exclusion_list) {
    $exclusion_list[] = 'jquery';
    $exclusion_list[] = 'another-js';
    return $exclusion_list;
});

To modify the Filter Google Font Characters

By default, this feature filtered the Google Font Characters to only use:

1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz%20!&"#$%\'()*+,-./:;<=>?@[\\]^_`{|}~%26≤≥±√$€£¥•©®™

You can modify the characters using this filter:

Example filter to add some extra characters:

add_filter('font_characters', function ($fontCharacters) {
    // Modify the characters as needed
    $fontCharacters .= 'éèêñ';
    return $fontCharacters;
});

Example filter to fully use your preferred characters:

add_filter('font_characters', function ($fontCharacters) {
    // Modify the characters as needed
    $fontCharacters = '1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz%20!"#$%\'()*+,-./:;';
    return $fontCharacters;
});

*note the ‘dot’ difference

Lazy Load, Preload, and more filters

Example filter to add extra lazyload exclude list:

add_filter( 'opm_exclude_lazy_class', function($opm_exclude_lazy_class) {
    return array( 
        'my-logo', 'my-hero-img', 'exclude-lazy'
    );
} );

Example filter to change the image sizes for preload featured image:

add_filter( 'opm_featured_image_size', function($image_size, $post) {
    if ( is_singular( 'post' ) ) { return 'large'; }
    elseif ( is_singular( 'product' ) ) { return 'full'; }
    else { return $image_size; }
}, 10, 2 );

 

Need Help?

Still having trouble to speed up your site and need someone to do that for you? Try my WordPress Speed Optimization Service.

 

Check out my other plugins:

  • Optimize More! Images
    A simple yet powerfull image, iframe, and video optimization plugin.
  • Lazyload, Preload, and more!
    A simplified version of Optimize More! Images. This tiny little plugin (around 14kb zipped) is able to do what Optimize More! Images can do but without UI for settings (you can customize the default settings using filters).
  • Animate on Scroll
    Animate any Elements on scroll using the popular AOS JS library simply by adding class names.
  • Shop Extra – WooCommerce Extras
    A lightweight plugin to enhance your WooCommerce & Business site. Floating WhatsApp Chat Widget, WhatsApp Order Button for WooCommerce, Hide/Disable WooCommerce Elements, WooCommerce Strings Translations, add Extra Product Tabs, add Date Picker to products, limit order quantity, add Custom Option to Checkout Page, Add Edit Order features to Checkout page, and many more.
  • Image & Video Lightbox

 

DomainExposuresHeadersLast Checked
e*e*t*i*c*e*.com F 2026-06-02 14:45:10
e*e*t*i*i*e*c*e*.com F 2026-06-02 13:55:54
e*e*t*i*i*e*c*e*.fr F 2026-05-31 23:51:17
t*i*g*r*e*.com (WP 6.7.5) F 2026-05-19 19:19:03
s*i*h*o*l.com F 2026-05-18 01:54:01
w*r*d*e*b*-*g.com (WP 6.9.4) D 2026-05-13 19:46:55

Top 50 Plugins

Plugin Count
elementor 1,756,473
contact-form-7 1,728,289
elementor-pro 1,024,971
woocommerce 799,922
revslider 604,917
jetpack 459,268
js_composer 423,031
wp-rocket 325,807
essential-addons-for-elementor-lite 283,118
gravityforms 258,255
complianz-gdpr 248,417
cookie-law-info 224,740
instagram-feed 223,256
google-site-kit 216,880
sitepress-multilingual-cms 215,794
google-analytics-for-wordpress 210,035
header-footer-elementor 205,913
elementskit-lite 198,799
bluehost-wordpress-plugin 189,610
gutenberg 159,149
cookie-notice 146,224
gutenberg-core 144,661
wpforms-lite 127,657
the-events-calendar 127,623
litespeed-cache 126,200
gtranslate 124,664
astra-sites 118,113
popup-maker 113,498
woocommerce-payments 111,181
tablepress 105,027
honeypot 94,590
coblocks 93,714
astra-addon 93,376
all-in-one-seo-pack 91,553
wp-smushit 91,525
duracelltomi-google-tag-manager 91,157
LayerSlider 89,799
bb-plugin 89,314
premium-addons-for-elementor 85,023
akismet 84,679
megamenu 83,993
cleantalk-spam-protect 82,503
mailchimp-for-wp 82,075
woocommerce-gateway-stripe 81,463
ml-slider 78,813
fusion-builder 77,905
ewww-image-optimizer 77,261
formidable 76,623
borlabs-cookie 76,613
wp-pagenavi 76,351

Top 50 Themes

Theme Count
hello-elementor 600,560
Divi 500,236
astra 415,541
flatsome 126,169
Avada 121,734
generatepress 116,737
pub 100,060
oceanwp 81,549
kadence 76,302
enfold 70,112
salient 65,454
twentyseventeen 54,760
bb-theme 54,332
twentytwentyfour 52,997
cocoon-master 51,737
h4 51,188
betheme 50,586
blocksy 49,275
dt-the7 44,946
twentytwentyfive 42,642
neve 38,308
Avada-Child-Theme 36,816
gox 32,908
woodmart 32,438
bridge 32,297
twentytwentyone 31,574
lightning 30,807
twentytwenty 29,395
swell 28,245
Impreza 25,689
bricks 25,333
twentytwentythree 23,657
Newspaper 22,757
twentytwentytwo 19,761
sydney 19,597
epik-redesign 19,271
uncode 18,603
voxel 17,877
twentysixteen 17,759
pro 17,587
storefront 17,462
extendable 14,471
Total 14,416
yith-wonder 13,964
kubio 13,887
hello-theme-child-master 12,992
factory-templates-4 12,783
themify-ultra 12,708
yootheme 12,593
hestia 12,458