Skip to main content

Tools ato z

#1 


Reduce initial server response time Root document took 770 ms

Keep the server response time for the main document short because all other requests depend on it. Learn more about the Time to First Byte metric.FCPLCP
URL
Time Spent
Blogger
 Hosting 1st Party 
770 ms
/?m=1
(bestseller369.blogspot.com)
770 ms

 

paste this below the <head>



<script type='text/javascript'>

//<![CDATA[

var uri = window.location.toString();


// Replace "%3D" or "%3D%3D"

if (uri.indexOf("%3D") > 0) {

    var clean_uri = uri.substring(0, uri.indexOf("%3D"));

    window.history.replaceState({}, document.title, clean_uri);

}


// Replace "&m=1" or "?m=1"

if (uri.indexOf("&m=1") > 0 || uri.indexOf("?m=1") > 0) {

    var clean_uri = uri.split(/&m=1|\?m=1/)[0];

    window.history.replaceState({}, document.title, clean_uri);

}

//]]>

</script>



#2

Reduce unused JavaScript Potential savings of 72 KiB

Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.LCP
URL
Transfer Size
Potential Savings
Blogger
 Hosting 1st Party 
103.3 KiB
71.7 KiB
57.7 KiB
42.7 KiB
…res/413…-vegeclub_compiled.js
(resources.blogblog.com)
45.6 KiB
29.0 KiB




right click on the error unused java script to take link and add it "YOUR SCRIPT URL" AND PASTE THIS <script>section

ye solve karne ke do tarike hai 

  • Using defer is generally preferred because it ensures scripts are executed in order and after the HTML is parsed.
<script defer='defer' type='text/javascript' src='YOUR_SCRIPT_URL'></script>


  • However, if the order of execution is not crucial, you can use async for even better parallel loading.
<script async='async' type='text/javascript' src='YOUR_SCRIPT_URL'></script>


in my case async is working 


uper diye gaye #1#2 ke dono problem ke liye ikk code banaya ja sakte hai jiske performance bahut acche hoge 

agar aap pehle diye gaye cleaning script ke sath in dono scripts ko shamil karte hain, to ye complete code ban jayega jo aapko apne Blogger template mein paste karna hoga. Yahan aapka complete code hoga:

<script type='text/javascript'>

//<![CDATA[

// Load the first script
var script1 = document.createElement('script');
script1.src = 'https://www.blogger.com/static/v1/widgets/679989195-widgets.js';
document.head.appendChild(script1);

// Load the second script
var script2 = document.createElement('script');
script2.src = 'https://resources.blogblog.com/blogblog/data/res/4130296052-vegeclub_compiled.js';
document.head.appendChild(script2);

// Execute cleaning script after a short delay
setTimeout(function() {
    var uri = window.location.toString();

    // Replace "%3D" or "%3D%3D"
    if (uri.indexOf("%3D") > 0) {
        var clean_uri = uri.substring(0, uri.indexOf("%3D"));
        window.history.replaceState({}, document.title, clean_uri);
    }

    // Replace "&m=1" or "?m=1"
    if (uri.indexOf("&m=1") > 0 || uri.indexOf("?m=1") > 0) {
        var clean_uri = uri.split(/&m=1|\?m=1/)[0];
        window.history.replaceState({}, document.title, clean_uri);
    }
}, 1000);  // Adjust the delay as needed (in milliseconds)

//]]>

</script>



Is code mein pehle do scripts (https://www.blogger.com/static/v1/widgets/679989195-widgets.js aur https://resources.blogblog.com/blogblog/data/res/4130296052-vegeclub_compiled.js) ko load kiya ja raha hai, aur fir ek short delay ke baad cleaning script chalaya ja raha hai. Ye complete code apne Blogger template ke HTML me add karna hoga.


performance after pasting only single code below the <head>

#2.1
Reduce unused JavaScript Potential savings of 72 KiB
Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.LCP
URL solved
Transfer Size
Potential Savings
Blogger
 Hosting 1st Party 
103.3 KiB
71.7 KiB
57.7 KiB
42.7 KiB
…res/413…-vegeclub_compiled.js
(resources.blogblog.com)
45.6 KiB
29.0 KiB


head ke niche system ui ko paste kare 

<head> ke niche paste kare <!-- Asynchronously and defer loading system UI related scripts --> <script async defer src="path/to/system-ui-script.js"></script>


hello


not solved




#4

Ensure text remains visible during webfont load

Leverage the font-display CSS feature to ensure text is user-visible while webfonts are loading. Learn more about font-display.FCPLCP
URL
Potential Savings
Google Fonts
 Cdn (this solve)
20 ms
…v30/u-440qyri….woff2
(fonts.gstatic.com)
0 ms
…v20/4iCs6KVjb….woff2
(fonts.gstatic.com)
0 ms
…v20/4iCv6KVjb….woff2
(fonts.gstatic.com)
0 ms
…v30/u-4m0qyri….woff2
(fonts.gstatic.com)
0 ms
…v20/4iCv6KVjb….woff2
(fonts.gstatic.com)
0 ms

ye bscid code hai google fonts cdn ke liye isme app apne font family ko add kar sakte hai

<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=YourFontFamily">

take all the links by right click on the above font and make the code like made in green down and paste green changed code above </head> where u will get the down code


Look for Code @ font-face


-----------AD This code---------------
font-display:swap;

--------------If you are using Google Fonts--------------------

Look for Code
fonts.googleapis.com

you can resolve this by appending 

&amp;display=swap 





  <script async='async' src='https://www.gstatic.com/external_hosted/clipboardjs/clipboard.min.js'/>

replace above

&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;en&quot;&gt;
&lt;head&gt;
    &lt;!-- Other head elements --&gt;

    &lt;!-- Place the provided code here --&gt;
    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://fonts.googleapis.com/css2?family=Merriweather:wght@300&amp;family=Ubuntu:wght@400&amp;display=swap&quot; crossorigin=&quot;anonymous&quot;&gt;
    &lt;script async=&quot;async&quot; src=&quot;https://www.gstatic.com/external_hosted/clipboardjs/clipboard.min.js?display=swap&quot;&gt;&lt;/script&gt;

    &lt;!-- Add canonical links if needed --&gt;
    &lt;link rel=&quot;canonical&quot; href=&quot;https://fonts.gstatic.com/s/merriweather/v30/u-440qyriQwlOrhSvowK_l5-fCZMdeX3rg.woff2&quot;&gt;
    &lt;link rel=&quot;canonical&quot; href=&quot;https://fonts.gstatic.com/s/ubuntu/v20/4iCs6KVjbNBYlgoKfw72nU6AFw.woff2&quot;&gt;
    &lt;link rel=&quot;canonical&quot; href=&quot;https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCjC3jsGyNPYZvgw.woff2&quot;&gt;
    &lt;link rel=&quot;canonical&quot; href=&quot;https://fonts.gstatic.com/s/merriweather/v30/u-4m0qyriQwlOrhSvowK_l5-eRZOf-LVrPHp.woff2&quot;&gt;
    &lt;link rel=&quot;canonical&quot; href=&quot;https://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCxCvjsGyNPYZvgw.woff2&quot;&gt;
&lt;/head&gt;
&lt;body&gt;
    &lt;!-- Your page content --&gt;
&lt;/body&gt;
&lt;/html&gt;


4th solve hone ke baad appko niche ka ye error milta hai to body{ ke  niche diya gaya style code add kar de

#5

Eliminate render-blocking resources Potential savings of 150 ms

Resources are blocking the first paint of your page. Consider delivering critical JS/CSS inline and deferring all non-critical JS/styles. Learn how to eliminate render-blocking resources.FCPLCP
URL
Transfer Size
Potential Savings
Google Fonts
 Cdn 
1.3 KiB
750 ms
/css2?family=…
(fonts.googleapis.com)
1.3 KiB
750 ms






/* Apply Merriweather font to the entire body with font-display: swap */
body {
   font-family: 'Merriweather', sans-serif;
   font-display: swap;
}

/* Additional styles for better readability */
h1, h2, h3, p {
   font-weight: 300;
}


uper ka code set hone per yadi appko or ikk error dikhai de to 
#6

Minimize third-party usage Third-party code blocked the main thread for 0 ms
Third-party code can significantly impact load performance. Limit the number of redundant third-party providers and try to load third-party code after your page has primarily finished loading. Learn how to minimize third-party impact.TBT
Third-Party
Transfer Size
Main-Thread Blocking Time
Google Fonts
 Cdn 
58 KiB
0 ms
…v20/4iCv6KVjb….woff2
(fonts.gstatic.com)
15 KiB
0 ms
…v20/4iCs6KVjb….woff2
(fonts.gstatic.com)
15 KiB
0 ms
…v30/u-4m0qyri….woff2
(fonts.gstatic.com)
14 KiB
0 ms
…v30/u-440qyri….woff2
(fonts.gstatic.com)
13 KiB
0 ms
/css2?family=…
(fonts.googleapis.com)
1 KiB
0 ms
Google CDN
 Cdn 
4 KiB
0 ms
4 KiB
0 ms

hello
#7



Reduce unused JavaScript Potential savings of 147 KiB
Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.LCP
URL
Transfer Size
Potential Savings
Blogger
 Hosting 1st Party 
206.7 KiB
146.8 KiB
57.7 KiB
46.1 KiB
57.7 KiB
42.7 KiB
…res/413…-vegeclub_compiled.js
(resources.blogblog.com)
45.6 KiB
29.0 KiB
…res/413…-vegeclub_compiled.js
(resources.blogblog.com)
45.6 KiB
29.0 KiB
Eliminate render-blocking resources Potential savings of 150 ms (again getting problem)
Resources are blocking the first paint of your page. Consider delivering critical JS/CSS inline and deferring all non-critical JS/styles. Learn how to eliminate render-blocking resources.FCPLCP
URL
Transfer Size
Potential Savings
Google Fonts
 Cdn 
1.3 KiB
750 ms
/css2?family=…
(fonts.googleapis.com)
1.3 KiB
750 ms
Largest Contentful Paint element 2,650 ms
Serve static assets with an efficient cache policy 2 resources found
Ensure text remains visible during webfont load(again getting problem)
Leverage the font-display CSS feature to ensure text is user-visible while webfonts are loading. Learn more about font-display.FCPLCP
URL
Potential Savings
Google Fonts
 Cdn 
20 ms
…v30/u-440qyri….woff2
(fonts.gstatic.com)
0 ms
…v20/4iCs6KVjb….woff2
(fonts.gstatic.com)
0 ms
…v20/4iCv6KVjb….woff2
(fonts.gstatic.com)
0 ms
…v30/u-4m0qyri….woff2
(fonts.gstatic.com)
0 ms
Avoid serving legacy JavaScript to modern browsers Potential savings of 0 KiB
Polyfills and transforms enable legacy browsers to use new JavaScript features. However, many aren't necessary for modern browsers. For your bundled JavaScript, adopt a modern script deployment strategy using module/nomodule feature detection to reduce the amount of code shipped to modern browsers, while retaining support for legacy browsers. Learn how to use modern JavaScriptTBT
Initial server response time was short Root document took 180 ms
URL
Potential Savings
Google CDN
 Cdn 
0.1 KiB
0.1 KiB
@babel/plugin-transform-classes
JavaScript execution time 0.4 s
Consider reducing the time spent parsing, compiling, and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to reduce Javascript execution time.TBT
URL
Total CPU Time
Script Evaluation
Script Parse
Blogger
 Hosting 1st Party 
598 ms
240 ms
134 ms
/?m=1
(bestseller369.blogspot.com)
262 ms
37 ms
8 ms
…res/413…-vegeclub_compiled.js
(resources.blogblog.com)
198 ms
138 ms
54 ms
139 ms
65 ms
71 ms
Unattributable
103 ms
6 ms
0 ms
Unattributable
103 ms
6 ms
0 ms
Minimizes main-thread work 0.7 s
Consider reducing the time spent parsing, compiling and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to minimize main-thread workTBT
Category
Time Spent
Script Evaluation
254 ms
Other
153 ms
Script Parsing & Compilation
135 ms
Style & Layout
108 ms
Parse HTML & CSS
45 ms
Garbage Collection
10 ms
Rendering
7 ms
Avoid long main-thread tasks 4 long tasks found
Lists the longest tasks on the main thread, useful for identifying worst contributors to input delay. Learn how to avoid long main-thread tasksTBT
URL
Start Time
Duration
Blogger
 Hosting 1st Party 
313 ms
2,771 ms
92 ms
…res/413…-vegeclub_compiled.js
(resources.blogblog.com)
2,639 ms
88 ms
…res/413…-vegeclub_compiled.js
(resources.blogblog.com)
2,564 ms
75 ms
/?m=1
(bestseller369.blogspot.com)
996 ms
58 ms
Avoids enormous network payloads Total size was 189 KiB
Large network payloads cost users real money and are highly correlated with long load times. Learn how to reduce payload sizes.LCP
URL
Transfer Size
Blogger
 Hosting 1st Party 
127.0 KiB
58.5 KiB
…res/413…-vegeclub_compiled.js
(resources.blogblog.com)
46.4 KiB
/?m=1
(bestseller369.blogspot.com)
16.1 KiB
3.1 KiB
/responsive/sprite_v1_6.css.svg
(bestseller369.blogspot.com)
2.9 KiB
Google Fonts
 Cdn 
56.3 KiB
…v20/4iCv6KVjb….woff2
(fonts.gstatic.com)
14.7 KiB
…v20/4iCs6KVjb….woff2
(fonts.gstatic.com)
14.6 KiB
…v30/u-4m0qyri….woff2
(fonts.gstatic.com)
13.7 KiB
…v30/u-440qyri….woff2
(fonts.gstatic.com)
13.3 KiB
Google CDN
 Cdn 
4.1 KiB
4.1 KiB
Avoids an excessive DOM size 89 elements
A large DOM will increase memory usage, cause longer style calculations, and produce costly layout reflowsLearn how to avoid an excessive DOM size.TBT
Statistic
Element
Value
Total DOM Elements
89
Maximum DOM Depth
form > label.search-submit-container > svg.svg-icon-24 > use
<use xlink:href="/responsive/sprite_v1_6.css.svg#ic_search_black_24dp" xmlns:xlink="http://www.w3.org/1999/xlink">
14
Maximum Child Elements
body.feed-view
<body class="feed-view version-1-3-3" data-js-state="loaded">
14
Avoid chaining critical requests 6 chains found
The Critical Request Chains below show you what resources are loaded with a high priority. Consider reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load. Learn how to avoid chaining critical requests.FCPLCP
Maximum critical path latency: 244.639 ms
Initial Navigation
/?m=1
(bestseller369.blogspot.com)
…v30/u-4m0qyri….woff2
(fonts.gstatic.com)
 - 4.056 ms, 13.69 KiB
/css2?family=…
(fonts.googleapis.com)
 - 5.869 ms, 1.32 KiB
…v30/u-440qyri….woff2
(fonts.gstatic.com)
 - 4.645 ms, 13.32 KiB
…v20/4iCs6KVjb….woff2
(fonts.gstatic.com)
 - 3.817 ms, 14.58 KiB
 - 7.187 ms, 58.52 KiB
…v20/4iCv6KVjb….woff2
(fonts.gstatic.com)
 - 3.958 ms, 14.70 KiB
Minimize third-party usage Third-party code blocked the main thread for 0 ms
Third-party code can significantly impact load performance. Limit the number of redundant third-party providers and try to load third-party code after your page has primarily finished loading. Learn how to minimize third-party impact.TBT
Third-Party
Transfer Size
Main-Thread Blocking Time
Google Fonts
 Cdn 
58 KiB
0 ms
…v20/4iCv6KVjb….woff2
(fonts.gstatic.com)
15 KiB
0 ms
…v20/4iCs6KVjb….woff2
(fonts.gstatic.com)
15 KiB
0 ms
…v30/u-4m0qyri….woff2
(fonts.gstatic.com)
14 KiB
0 ms
…v30/u-440qyri….woff2
(fonts.gstatic.com)
13 KiB
0 ms
/css2?family=…
(fonts.googleapis.com)
1 KiB
0 ms
Google CDN
 Cdn 
4 KiB
0 ms
4 KiB
0 ms
More information about the performance of your application. These numbers don't directly affect the Performance score.
PASSED AUDITS (23)
Show


hello




<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css" media="print" onload="this.media='all'">



<link as='style' href='#' rel='preload'/>
<link as='font' crossorigin='' href='#' rel='preload' type='font/woff2'/>
<link as='script' href='#' rel='preload'/>

Comments

Popular posts from this blog

ADD PRICE IN SARA PRODUCT SOLVED

 ₹0.00 bottle 1 ₹0.00art mein ek item hai, jiska naam hai "DISCOVER BEST BRAIN-BOOSTING MULTIVITAMINS: LATEST TOP RESEARCH". Is item ka price ₹0.00 hai, aur isme ek bottle shamil hai. Is item ko aapne ek baar add kiya hai, isliye total price bhi ₹0.00 dikha raha hai.ji per actual me ye product ka price 1200 hia jo ki cart me update nahi ho pa raha hai kaise karu thik se bataye meri bhasha me  mere cart product price add karne ka tarika bataye HTML ME PASTE KARE  <h2 class="premium multivitamins">            </h2>     <div class="mediculabs_product_item_price item_price show"><b>Price:</b><span class="mediculabs_product_price meta-price">65 INR./span&gt;</span></div>

sara remove powered by blogger in footer

💀 no line 8460 <div class='copyright-area'>Created By <a href='http://soratemplates.com/' id='mycontent' rel='dofollow' title='SoraTemplates'>Blogger Theme</a> | Distributed By <a href='https://gooyaabitemplates.com/' rel='dofollow' style='color:#ff00ba;' target='_blank' title='Blogger Templates'>Blogger Templates</a> 💀remove attribute and add html gadget in layout  paste this code there to add ur site logo there <div id="dynamicContent">     <a id="dynamicLink" rel='nofollow'>         <img id="dynamicImage" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhdU5mO3u-x3u1kxj0JaU7qzjSZjMB8osCaoPfwGlc2Kx4mjKw3FHkGCjXQs2QZjzujuwZcyPkJABjHi8H8565xjzGFdb5EiwVdRS5LptVvpBdiEHsEIdouU8ALls0t61Kl-FadOnZBN-EUgrS-DZeI-8CYvdpR7TOj0JcZn1guY7RWAHBxOLmtjHaphlYE/s16000-rw/crop%20logo%20image%20side%20bar.png" alt=...

ai tool

 https://smodin.io/free-english-rewriter-and-spinner/ai-detection-remover ai detecter and removal https://originality.ai/blog/highlight-ai-text= for ai highlighter and affiliate marketing https://gptzero.me/  = ai writing detector and highlighter  https://www.zerogpt.com/           = ai content writer detector https://plagiarism-remover.com/humanize-ai-text/           = humanize writer