Trick for Google pagespeed insights

Ercan Acar

Newbie
Joined
Jun 6, 2020
Messages
9
Reaction score
14
Hi probably you know this javascript usage But maybe you didn't check it on wit Google pagespeed insights.
With this loading technique your web sites can get high or full score from google speed index engine.

look there it is very bad score, reason of my web site loading many external scripts.
pagespeedinsights-kotu1.png


Also I was loading google Adsense, Google Analytics, Alexa and som other ads scripts. All script loading with ASYNC and DEFER but really Google pagespeed insights was giving me Bad score, until I have found this technique.
With this technique I've loaded my external other script after page fully loaded. and waited after 3sec.

This two new things are the Trick. 1. After page load and 2. wait 3sec. (you can use 2.5 or 2.7 but I noticed 1sec and 2sec was not trick, test it)
For using this technique :
  1. Remove all existing javscript load codes like script src=.... etc.
  2. move all these codes to inside of my javascript for manually and dynamically loading
  3. And see the result.
Don't forget only move javascript load code example Google Adsense using many blocks like ins for ads positions etc. Let all of them as it is. We will load only scripts.
And now my javascript code: (I sad probably you know but I found trick for Google speed index)

JavaScript:
//published by https://NasiLL.com
    
window.addEventListener("DOMContentLoaded", function(){

window.setTimeout(function(){
var adsense = document.createElement('script');
adsense.type = 'text/javascript';
adsense.src = "https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js";
adsense.async="async";
adsense.defer="defer";
var att = document.createAttribute("data-ad-client");
att.value = "ca-pub-PUT YOUR CODE" ;   
adsense.setAttributeNode(att);       
var head = document.getElementsByTagName('head')[0];
head.appendChild(adsense);

//YOU CAN ADD YOU OTHER SCRIPTS HERE WITH SAME METHOD

}, 3000);

}, false);

Demo here: https://www.nasill.com/internet/google-siralamasi-icin-hiz-trick-nasil-yapilir
you can check it with Google pagespeed insights and if you look inside the codes really I have many script but Google pagespeed insights doesnt noticed that slow effects. And it gives me HIGH socre.
and after all my score is: :) we tricked the Google :)

pagespeedinsights-desktop1-1030x559.png
 
Cool, I'll try it. But what benefits does it have? Does it make any impact ?
Yes you will get high index value. Cause You will get Fast web page score.
Especially it is working on RED group. Cause if you are in red group google give you bad score for search results.
Cause as you know google trying to make Good user experience. So for this reason google dont want to offer Red (Slow) web pages to user.

But with my trick, you web sites will get GREEN and FAST score from google :)

I hope they will not read this topic and fix that trick :)
 
I read that google doesn’t rely much on those scores but rather relies on the actual user experience by testing bounce rate and stuff.
 
I read that google doesn’t rely much on those scores but rather relies on the actual user experience by testing bounce rate and stuff.
maybe it is not important if you have score 90 or 96, but if you in Red group, I think it is very important!
Google always send warning if you get inside the Red (slow) group. it means red is really serious problem. So consider your web page speed.
 
I read that google doesn’t rely much on those scores but rather relies on the actual user experience by testing bounce rate and stuff.

This is accurate.

Page Speed Insights tool is irrelevant. Nothing more than a vanity metric.

You need to make sure that your site has a fast time to first byte and content paint times.

Don't manipulate your code for a vanity score, instead making sure the page loads fast for the user.

Don't believe me?

Check out Amazon on Gtmetrix. I think Amazon may have spent one or two dollars on optimising their website in the last 20 years or so... ;)

Screenshot 2020-07-04 at 08.11.35.png
 
This is accurate.

Page Speed Insights tool is irrelevant. Nothing more than a vanity metric.

You need to make sure that your site has a fast time to first byte and content paint times.

Don't manipulate your code for a vanity score, instead making sure the page loads fast for the user.

Don't believe me?

Check out Amazon on Gtmetrix. I think Amazon may have spent one or two dollars on optimising their website in the last 20 years or so... ;)

I read that google doesn’t rely much on those scores but rather relies on the actual user experience by testing bounce rate and stuff.

If you have High DA, nothing else matters, even if you write gibberish. But they said page speed score (FID, CLS, LCP) will be a ranking factor fro 2021, better to fix this now if you have low DA.

Page Speed may be a vanity metric but if google says you need 75, you need to achieve that for better rankings.

Gtmetrix score- I don't care that much. I care about the things that show up on search console (FID, CLS, LCP) which impact rankings.

I think that even google doesn't know what they are doing with FID, CLS, LCP. But hey if its in the search console I need to fix that.
 
Hi probably you know this javascript usage But maybe you didn't check it on wit Google pagespeed insights.
With this loading technique your web sites can get high or full score from google speed index engine.

look there it is very bad score, reason of my web site loading many external scripts.
pagespeedinsights-kotu1.png


Also I was loading google Adsense, Google Analytics, Alexa and som other ads scripts. All script loading with ASYNC and DEFER but really Google pagespeed insights was giving me Bad score, until I have found this technique.
With this technique I've loaded my external other script after page fully loaded. and waited after 3sec.

This two new things are the Trick. 1. After page load and 2. wait 3sec. (you can use 2.5 or 2.7 but I noticed 1sec and 2sec was not trick, test it)
For using this technique :
  1. Remove all existing javscript load codes like script src=.... etc.
  2. move all these codes to inside of my javascript for manually and dynamically loading
  3. And see the result.
Don't forget only move javascript load code example Google Adsense using many blocks like ins for ads positions etc. Let all of them as it is. We will load only scripts.
And now my javascript code: (I sad probably you know but I found trick for Google speed index)

JavaScript:
//published by https://NasiLL.com
   
window.addEventListener("DOMContentLoaded", function(){

window.setTimeout(function(){
var adsense = document.createElement('script');
adsense.type = 'text/javascript';
adsense.src = "https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js";
adsense.async="async";
adsense.defer="defer";
var att = document.createAttribute("data-ad-client");
att.value = "ca-pub-PUT YOUR CODE" ;  
adsense.setAttributeNode(att);      
var head = document.getElementsByTagName('head')[0];
head.appendChild(adsense);

//YOU CAN ADD YOU OTHER SCRIPTS HERE WITH SAME METHOD

}, 3000);

}, false);

Demo here: https://www.nasill.com/internet/google-siralamasi-icin-hiz-trick-nasil-yapilir
you can check it with Google pagespeed insights and if you look inside the codes really I have many script but Google pagespeed insights doesnt noticed that slow effects. And it gives me HIGH socre.
and after all my score is: :) we tricked the Google :)

pagespeedinsights-desktop1-1030x559.png
doesn't plugins like wp-rocket do the same thing?
 
Op I think Jeff saw your post and tweeked Amazon site speed

Screenshot_20200704-114411.png


This is accurate.

Page Speed Insights tool is irrelevant. Nothing more than a vanity metric.

You need to make sure that your site has a fast time to first byte and content paint times.

Don't manipulate your code for a vanity score, instead making sure the page loads fast for the user.

Don't believe me?

Check out Amazon on Gtmetrix. I think Amazon may have spent one or two dollars on optimising their website in the last 20 years or so... ;)

View attachment 138589
 
Stop chasing scores , percentage & colors- they are meaningless and even the good scores can lie.

There are optimization techniques that can trick out the testers but you have to dig deeper, beyond the scores, to the data. Each online tester gives you part of the answer :)
 
Yes you will get high index value. Cause You will get Fast web page score.
Especially it is working on RED group. Cause if you are in red group google give you bad score for search results.
Cause as you know google trying to make Good user experience. So for this reason google dont want to offer Red (Slow) web pages to user.

But with my trick, you web sites will get GREEN and FAST score from google :)

I hope they will not read this topic and fix that trick :)
Thanks for the feedback
 
Hi probably you know this javascript usage But maybe you didn't check it on wit Google pagespeed insights.
With this loading technique your web sites can get high or full score from google speed index engine.

look there it is very bad score, reason of my web site loading many external scripts.
pagespeedinsights-kotu1.png


Also I was loading google Adsense, Google Analytics, Alexa and som other ads scripts. All script loading with ASYNC and DEFER but really Google pagespeed insights was giving me Bad score, until I have found this technique.
With this technique I've loaded my external other script after page fully loaded. and waited after 3sec.

This two new things are the Trick. 1. After page load and 2. wait 3sec. (you can use 2.5 or 2.7 but I noticed 1sec and 2sec was not trick, test it)
For using this technique :
  1. Remove all existing javscript load codes like script src=.... etc.
  2. move all these codes to inside of my javascript for manually and dynamically loading
  3. And see the result.
Don't forget only move javascript load code example Google Adsense using many blocks like ins for ads positions etc. Let all of them as it is. We will load only scripts.
And now my javascript code: (I sad probably you know but I found trick for Google speed index)

JavaScript:
//published by https://NasiLL.com
   
window.addEventListener("DOMContentLoaded", function(){

window.setTimeout(function(){
var adsense = document.createElement('script');
adsense.type = 'text/javascript';
adsense.src = "https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js";
adsense.async="async";
adsense.defer="defer";
var att = document.createAttribute("data-ad-client");
att.value = "ca-pub-PUT YOUR CODE" ;  
adsense.setAttributeNode(att);      
var head = document.getElementsByTagName('head')[0];
head.appendChild(adsense);

//YOU CAN ADD YOU OTHER SCRIPTS HERE WITH SAME METHOD

}, 3000);

}, false);

Demo here: https://www.nasill.com/internet/google-siralamasi-icin-hiz-trick-nasil-yapilir
you can check it with Google pagespeed insights and if you look inside the codes really I have many script but Google pagespeed insights doesnt noticed that slow effects. And it gives me HIGH socre.
and after all my score is: :) we tricked the Google :)

pagespeedinsights-desktop1-1030x559.png
I don't know to code and I have been struggling for too long on this issue would you give me a hand, please. thank you
 
I don't get how to add this in my current Adsense codes.
 
Back
Top