delete all friends at once on Facebook by Help blogger Trick on firefox only

FIRST ADD Greasemonkey 3.6 ON YOUR FIREFOX






SECOND INSTALL SCRIPT



Script Summary: This script is useful if you don't want to delete each friends one by one.



Version: 2.1.4
What is function this script?
Here I make this script have 4 function such as:
1) Delete deactived friend on your friendlist.
2) Unfriend/remove selected friend in single-click.
3) Can delete all of your friend on friendlist.
4) Mass unfriend with just one click.
How to use this script?
To use in Mozilla follow these step below:
Step 1: You must have Mozilla Firefox and installed[Greasemonkey addon.](https://addons.mozilla.org/en-US/firefox/addon/greasemonkey/)
Step 2: Install this script.
Step 3: Restart Mozilla Firefox, and open your Facebook.
Step 4: Go to your Timeline Profile, click Friends or click here

. If script not load, just reload/refresh tab.
Step 5: Tick on checkbox near friend name to select for delete :) . If you click button "Select All" , it will tick all . Becareful ! After you click "Delete Selected Friends" it will can not undo .
If you need any type of help contact with me.open link & watch video how to use this script
[Click Hare](http://HELPBLOGGERTRICK.blogspot.COM/)
DONE !






Add-on screenshot #1Add-on screenshot #2



temple

</div>
<div class='blog-pager' id='blog-pager'>
<span id='blog-pager-newer-link'>
<a class='blog-pager-newer-link' href='http://www.spiceupyourblog.com/' id='Blog1_blog-pager-newer-link' title='Newer Posts'><img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh77uzmc8yt2gIxCrkiJCZ_NLmd3PZdaO8-7kFE8h17VGu2Ev_Lr4CMtHzbnQAba3ekFFqXcffIoAmcAHzOdV8dn0penOhBtUMeHWzFiVzMNP_KNUhqQTJpp6_uphCH8cXTzSEyhHKL-Bw/s1600/Previous-posts.png'/></a>
</span>
<span id='blog-pager-older-link'>
<a class='blog-pager-older-link' href='http://www.spiceupyourblog.com/search?updated-max=2014-04-28T13:56:00%2B01:00&amp;max-results=6&amp;start=6&amp;by-date=false' id='Blog1_blog-pager-older-link' title='Older Posts'><img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiVhNfDfi1WbwamSFEFk7Eqs4IrJ7DAOR4qKaVz0K1NXJX09K60bpjJKMqVHKYPqVeGVVnr_no8uHk5FpKxIFmqS7TsSPrJzDnjdxoisHCbtRwjWoFSvjxmSEgIZ8xbXiVaMe1RlUyCn6A/s1600/Next-page.png'/></a>
</span>
<a class='home-link' href='http://www.spiceupyourblog.com/'><img border='0' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhj98Kx3rXA8Ig97FztnftpTe63tAOuFKCewceS4hDa1kNghbYxPuJClKIT3vN7o1D15rCSPk9jXu8IjXuG6FsZm6MJFZ7mPK7e8w_2vrQXTFGEQlUwEHhK2ioKBMyEEiPTUifrTtJ6F-A/s1600/Home-page.png'/></a>
</div>
<div class='clear'></div>
<div class='blog-feeds'>

Disable Right Click On Your Blog To Prevent Copy/Paste


Bloggers always wanted to prevent users or other bloggers from copying the content from their blog or website. Few Bloggers do lots of efforts by researching and writing great articles for their blog, whereas some just copy and paste article and tutorials on their blog from others. So to prevent such bloggers from copying the content from your blog i will teach you to disable right click on your blog with just simpleJavascript. So lets get started.




How to disable right click on blog or website ?


   1. Go to your blogger Dashboard and click on Layout.
   2. Then click on Add Gadget.
   3. Choose Html/Javascript From Popup Window
   4. Now Copy and Paste below code into it.

<!--MBW Code -->
<!--helpbloggertrick.blogspot.com-->
<script language='JavaScript1.2'>
function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>
  
   5. Now save it and you are done disabling right click on your blog.

Got any problem ?


If you have any problem disabling right click on your blog or have any other question or suggestion then leave a comment below. I will be glad to help you. Don't Forget to subscribe, +1 on Google+ and like us on Facebook.

How To Automatically Redirect A Blogger Blog To Another URL

Blogger Redirect Code
There are a number of reasons you may want to automatically send visitors to your blog to another URL or from one blog to another.For example if you moved your blog, if you had two blogs and wanted to focus one just one and cover both topics.Automatically directing visitors to another URL is actually quiet easy and only requires a snippet of code added to the top of the template.In this post i will show you the code needed to automatically Redirect from a Blogger Blog to any other URL.

Firstly i should mention some people don't like to be redirected and you should only direct to a site with similar content.If you redirect people to sales pages, sites with adult content or anywhere the user is uncomfortable with it will put your Blogger account in jeopardy.For this reason the code i have in this post can be set to Redirect in an amount of time set by you.So you can set the code to redirect after 5 seconds and place a message at the top of the blog telling visitors they will be redirected.


With that in mind i have created a test blog that will direct to Google.Com so you can see how it works.Follow the link and wait 5 seconds for the redirect.

Demo - Automatic Redirect For Blogger

Add Auto Redirect Code To Blogger


Step 1. In Your (New Design) Blogger Dashboard Click The Drop Down Menu For Your Blog > Choose Template > Then Edit Html > Now Proceed > Tick The Expand Widget Templates Box as shown in the video Below :

Step 2. Find the following piece of code in your blogs Html : 
(It's Near The Very Top)

<head>

Step 3. Copy And Paste The Following Code Directly Below / Under <head>

<meta content='5;url=http://www.YOUR-URL.com/' http-equiv='refresh'/>

Important - 

1. Replace http://www.YOUR-URL.com/ In Blue With The URL You Want To Forward To.
2. The Number 5 In Red Sets The Amount Of Seconds Before The User Is Redirected Change This To Suit.

Step 4. Save your template and your blog will now redirect after the time you set.Once again remember don't use this to send people to sites unrelated or with spam as your entire Blogger Account may be effected.

If you give at least 5 seconds and add a clear message at the top of the blog there should be no trouble.Make sure to check out more 

HOW TO 'HACK' AND GET FREE VODACOM INTERNET

HOW TO 'HACK' AND GET FREE VODACOM INTERNET

HOW TO 'HACK' AND GET FREE VODACOM INTERNET
So finally people I bring you this new trick for getting free Internet in Vodacom Tanzania. This trick involves accessing the internet using the 0.facebook.com web address Vodacom kept it for promotion to its free Facebook service but people took advantage of it and hacked their way into it and so using the internet for free through a web proxy!

Let me not explain much and just go ahead to the good part! (How to actually implement the trick for free internet)


WHAT ARE THE STEPS TO GET FREE VODACOM INTERNET?


NOTE: First of all before trying these steps.

-Vodacom simcard or line must be registered.
-You are recommended to have 0.00 Tshs in your balance to try this trick!

Step1: Open Firefox web browser if you don’t have one download it.

Step2: Go to Firefox Menu by pressing Alt on the keyboard, Go to Tools>Options 

Step3: Go to Advanced Tab>Network Tab>, it should look like this

Step 4: Go to Settings>Select Manual Proxy configuration>Check use this proxy server for all protocols and insert any proxy IP from the list below
87.117.205.10
176.9.126.177
66.135.50.150


All IPs should be used with the port number 80.

If any of these IPs won't work or are slow then use these:
199.167.132.123
216.155.153.105
108.59.252.58


69.10.57.139


Step 5: Connect Your Modem and open Firefox and browse to 0.Facebook.com and the proxy should open and you can insert any web address you want to surf and surf for free!

NOTE: For this trick to work, when visiting any site you must start by opening 0.facebook.com first!

Your blog was locked for violating Terms Of Service. If you wish to request a review of your blog, edit its content and click 'Appeal'. This blog will be permanently deleted within 20 days unless you request a review.

Your blog was locked for violating Terms Of Service. If you wish to request a review of your blog, edit its content and click 'Appeal'. This blog will be permanently deleted within 20 days unless you request a review.

My four blogs Were blocked.
No notice...
No review option...
No edit option...
No reason explained to block...
My earning source are disabled...
I really feeling bad.. my hard work is waste...

Unhappy with blogger services...


My blocked Blogs addresses are..
http://whatsappmessagescollection.blogspot.com/

http://flyashbricksmanufacturers.blogspot.com/

http://funnyshayarihindi.blogspot.com/

http://bestflyashbrickmakingmachine.blogspot.com/

Free JavaScripts / Clocks, Calenders, And Timers / Here

Cut & Paste Current Date II
Credit: JavaScript Kit
Description: A script that displays the current date , in the format of "05/11/98"
Example: 01/23/2016
Directions
Simply insert the below into the <body> section of the page that will show the date:

<script>

/*Current date script credit: 
JavaScript Kit (www.javascriptkit.com)
Over 200+ free scripts here!
*/

var mydate=new Date()
var year=mydate.getYear()
if (year < 1000)
year+=1900
var day=mydate.getDay()
var month=mydate.getMonth()+1
if (month<10)
month="0"+month
var daym=mydate.getDate()
if (daym<10)
daym="0"+daym
document.write("<small><font color='000000' face='Arial'><b>"+month+"/"+daym+"/"+year+"</b></font></small>")


</script>

Download free traffic spirit version 5.2.3


Pls follow steps below in order to use Spirit:



1、Close security software:Close security software in the PC to prevent erroneously deletion after Spirit downloaded.

2、Download Traffic Spirit:Click Button,download Traffic Spirit to the PC.


3、Extract Traffic Spirit:Extract Spirit to file folder,Password: 123456,pls first install WinRAR,  OR  WinRAR if not ecompression software.


4、Add in the trusted list:Add Spirit in the trusted list of security software,the list is in the setting UI.


5、Run Traffic Spirit:Double click Spirit and use.


FAQ:Why Spirit detected as virus?

Free Traffic Software

In next 20 minutes, I will show you how to make massive traffic to your websites or links. My method is so easy, because you’re gonna use a traffic software (free tool) let’s named it “The Kiss Of The Dragon Method” (KoTD)
First, you’ll need to download the software from internet, you can get the link below, BUT before you download it, I want to explain you how the program works, and tell you what you have to know all about it.
This KoTD software only works on Windows system, but if you want to run it on Mac, you’ll need an additional program to install. Just Google it “how to run windows program on Mac”
You’ll need a good internet connection to make sure the program run well and give you the best result.
The program will automatically set running as windows starting, so if you want to delete program from your computer, you’ll need to remove it from your start-up list in Msconfig setting and after that you can delete it from its folder. The KoTD software is stand alone program, so you don’t need to install it on your system, just run it.
The Program is connected to the large traffic network on internet. This program will generate random traffic, it’s not targeted traffic. This is real traffic.
And you only need about 5 minutes to set it up and wait for about 10 minutes before traffic party begin, after that You can Watch Your Traffic Party Live on your analytic or tracker (such as Google analytic or histats.com)
Now You can download it below…
The last thing before download…
If you are using AVG antivirus, you have to pay an attention on this :
The AVG antivirus is not friendly to this software (Only AVG, It works good for other antivirus). I have received several reports from some users, that the AVG antivirus detect program as a Thread.
Program has unknown command (module) to AVG antivirus. So, if you experience this case, You need to turn off your AVG antivirus and run the program after that… this program is clear… it won’t harm you computer Or… You can change the antivirus on your computer.
I recommend you to keep your antivirus ON because this software will connected to the large traffic network on internet. So if you have AVG, I recommend you to change it with others. Or you can run this software on other computer without AVG.
Download the KoTD software
Direct download from Mediafire : Click Here (Zip password : kotd2012)

Let’s Do it Baby…
After you download the zip file, extract it and then run jingling.exe (KoTD Software). Don’t worry about the Chinese interface, I will show you how exactly to operate it well.
Please look at the main interface below, the number of allowed links are different for each area, you may only allow to add 2 URLs but sometimes system allow you to add 5 URLs. In my case it allow me to add 4 URLS.
Main interface
Add Your Websites / Links …
To add any website URLs or link, you can push “Add Button” on KoTD main interface. Please see the image below… Is that an Add Button ??? who cares!! LOL.
Hit on Add button
Add Your Websites / Links … Part II
Right after you hit on add button, you will see new entry form, please look at the image below… You have to enter your URL into the text box (it must be full URL with http:// or You won’t get the traffic) and after it you can hit OK button
Add you URL in to the box and click OK
After OK button the program will be back to the main interface with your URL in it. And OK button just let the party starts!! Yes… you will get your unlimited traffic immediately.
The Party Has Begun…
As you can see the number of allowed link turn to 1/4. It means I’ve added one URL into the program, and I only allowed to add 3 more URL. You can also remove the URL and add new one (I will explain it later). Allowed Link means the number of URL you can run at the same time with the system.
The Blue Bar indicate the number of visitors today, BUT it’s not accurate. To get real number of your web visitors you should see it on your tracker or you analytic. I always use histats.com as my tracker.. it gives me accurate number.
Add More OR Stop Party…
You can add more URL into the program, Just Repeat it as you add your 1st URL. In my case I can add 4 URL (Please look at the image below)
I’ve added 4 URL into the program
Add More OR Stop Party… Part II
You can stop traffic for each URLs by clicking the “Start/Stop” Text on the program (see image below)
After you hit the text you’ll see the Confirmation Box, just hit OK button, or you can cancel it if you change your mind…
You can start traffic again by clicking at the same text on the program main interface.
Remove The URL…
You can easily remove any URL from the program by clicking “Remove” text on the program (please see image below)
After you hit the “Remove” text you’ll see the Confirmation Box, just hit OK Button, repeat this step to remove other URL if you want it. After removal you can add new URL into the program, it’s easy huh??
Area / Geo Setting…
By default program will give you traffic from Asian Countries, mostly from Chinese. But you can set it to generate traffic from World Wide Countries. Please follow this instruction (see image below)
Click on that “Geo Setting” text, and you will see new window to set the program (please see the image below)
Area / Geo Setting… Part II
There are 4 (Four) GEO options on this KoTD software, as you can see on the image, there’s a default selection. But to get World Wide Traffic, you can choose the 4th Option. After that click OK button. If you see a Confirmation Box Just hit OK buddy…
Kiss of The Dragon…
There are some features that I haven’t explained, but you’ve got the most important features from Kiss of The Dragon Software… I hope this method can help your online business.
The Kiss Of The Dragon software bring you random traffic, sometimes it may NOT give any conversion, That’s why you’ll need to be creative to monetize this traffic. Honestly, It’s not high quality traffic. But it’s still good.

The Top 10 Traffic Generator Applications on the Web


The Internet is positively riddled with traffic generators. They range from low-quality autorefresh bots using proxies to appear as though they come from around the world, to sophisticated traffic exchange systems powered by real people and real advertising. Ideally, you’ll strike upon the most valuable of these networks when you’re searching, but there’s a few problems.
For one thing, legitimate traffic exchanges are few and far between. The services we sell are far from typical, and they work because we put a lot of time and effort into them. We don’t use low-quality bots like you’d find on Fiverr.
For another thing, the Internet has somewhere in the neighborhood of two decades worth of traffic bot programs littering the digital ground. Some have gone through upwards of a dozen name changes and rebrands, moving from one site to another. They disappear, leaving existing users in the lurch, never to receive support or updates when the program stops working. Then identical software comes out under a new name, charging anywhere from $5 to $250, scamming people out of their cash with the same back-end software.
Finally, of course, there’s the issue of what exactly an automated traffic generator typically is and does. More on that later. For now, why not take a look at a list of the best traffic generators we can find?

1. FFANET

This particular site isn’t really an automatic traffic generator. Instead, it’s an old, long-running network for email lists. The idea is to build an email list independent of SEO or Google, which frees you from the rigors of content marketing. You still need to work to generate leads, and you still need a website to pull in opt-ins, but FFA gives you a wide range of tools you can use to succeed. For example, a heat map and Google Analytics integration ensures the system gives you all the information you need to succeed. You can split-test as many as 100 variants on a given page, to make sure you’re using the best one. And, of course, the network is old and long-running, meaning it has a positive reputation and a history of being effective. You can find plenty of support from the staff and other users.
You can also take advantage of their signature free for all email exchange. When you register, you add your link to a list, an a selection of that list is send out in a newsletter every day to FFA members. You’re not just signing up for a valuable tool; you’re signing up for a ready-made audience already potentially interested in your site.

2. Pro Builder Plus

PBP is sort of a cross between a traffic generator and a multi-level marketing scheme, only without the threats that MLM traditionally entails. You’re not absolutely required to sign up under someone, though the program does cost money on a monthly basis. You’re granted access to traffic generation tools, as well as other promotional information and training. The MLM comes in with their referral commissions, which many people use more than the marketing tools themselves. There’s a sizable commission for enrolling new members, as well as seeing them succeed.

3. Monster-Traffic

Monster-Traffic is another traffic exchange, though it’s initially a little off-putting due to the 1995-style website. It’s a free for all styled advertising list, where anyone signing up becomes part of the audience and an advertiser at the same time. You sign up and you can enter a link into their system, and that link is added to a roster that is send out to every member of the group. Additionally, registration allows a free solo ad; an ad that isn’t drowned out by other advertisers in that mailer.
Monster-Traffic has two primary benefits; the first is that they have a free account. While premium accounts cost $10 monthly, there’s also a referral bonus. Signing up a user with your referral link earns you a free year of premium membership, so it’s easy to get the ball rolling and end up with free traffic year after year.

4. TrafficWave

TrafficWave is, again, not quite a traffic exchange. Rather, it’s a valuable tool to use with the traffic you’ve already attained. It’s a fairly sophisticated autoresponder for email lists, with a 30-day trial and a suite of tools designed to help you put together the best autoresponses available. Use it in conjunction with any of your affiliate or referral programs for a sizable benefit.

5. One Million Clicks

As the name implies, 1MC is a program that allows you to rack up a sizable number of clicks to your website in a very short time. It advertises itself as a “fake traffic generator” and that’s really what it is; it’s not going to earn you any money through commissions or referrals. It may earn you cash through pay per view ads, particularly if you use a proxy list, but its primary purpose is typically for testing. If you want to make sure your analytics are accurately reporting clicks, you can schedule a number of clicks through the software and track them. You can also set it to freely spam a site with clicks, to test the server under load. You should, of course, avoid targeting competitors; they won’t take kindly to an unwanted server stress test.

6. Auto Traffic Generator

No, this isn’t a tool to generate traffic jams on your way to work. Instead, it’s a piece of software a lot like 1MC, designed to send hits towards a website repeatedly. This one is a quick and easy to use program, with very little in the way of customization options, but that’s okay. It’s designed to do one thing and one thing only, and it does that thing.

7. TrafficProgrammer

This is another program doing much the same as the previous two, but it has a few unique aspects that put it on this list above the hordes of others. Particularly, it comes in many forms; a web interface, a stand-alone browser, a windows or mac executable or even a paid version. In a fit of goodwill, the paid version – costing $30 for the cheapest version – comes with a huge warning to try the free version before buying. It also warns of a lack of refund policy, so buyer beware.

8. Traffic Magnet

These paragraphs are beginning to sound like broken records; Traffic Magnet is yet another source of bot traffic. It will get you the hits you want, this time powered by a minor traffic exchange. The software itself looks hilariously like a poorly designed powerpoint, but in the end, the interface doesn’t matter if the program does its job.

9. Daytona Traffic Generator

A unique flower in the world of traffic generators, Daytona – a codename – uses a command line system. It’s also designed to work on Windows 7, it allows QoS throttling and it supports IPv6, which surprisingly little enterprise software does today. It’s also freeware developed by Microsoft.

10. Active Web Traffic

Finally, we have yet another traffic generator. This one is one of the slickest available, and it’s powered by a decent back-end network that has the potential to actually funnel real views your way rather than just blind bot traffic. It also bundles in analytics and marketing tools, including keyword research tools and conversion analysis.

About Bot Traffic

As a final note here, you always need to be aware of the difference between high quality traffic, traffic exchange network traffic and bot traffic.
High quality traffic is the best kind of traffic, consisting of real people who are interested in your product and are visiting your site to learn more. These are the leads you want to nurture. They’re also hard to acquire.
Traffic exchange users are comparatively low quality, but they’re still real humans. You’re getting real people to view your site, you’re just not bringing them in organically the way Google intends. You can make money from these users, but your conversion rate will be typically lower than what you might see from organic traffic. Of course, it’s also much cheaper and faster to find this traffic than it is to invest in SEO and content marketing.
Bot traffic, finally, isn’t very useful at all unless you’re selling advertising that earns you money based on pageviews, not by referrals or commissions. You can use fake traffic for testing or for abusing such programs, but you won’t sell products to robots. Always be aware of the kind of traffic you’re bringing in.

5 Cool Recent Post Widgets for Blogger

Adding a recent post widget for Blogger helps to reduce the dependency on email marketing, because you don't have to send out an email just to let people know you made a new post. Instead, it updates automatically for everyone to see. You can then use this information to design scheduled email newsletters, and take advantage of what's often referred to as the 'Twitter effect' where audiences will regularly check back on your site for the possibility that new posts are available. Without this, you force people to do run their own search for information and content, increasing the likelihood that they'll leave the site and hurt your bounce rate.

Once you've managed to attract visitors to one of your posts using the recent post widget for Blogger, it will continue to act as an accessible secondary resource to navigate around your site. That way, you can avoid having them sifting through old content that might be outdated. If you'd rather show off some of your best posts instead of your most recent posts, you can do that instead, or add that feature to the bar with just a few alterations.

Apart from looking great and taking up minimal space, there are too many benefits for you not to have a recent post widget for Blogger. The best part about these add-ons is that they come in a wide variety of designs that will fit any theme. If you're interested in adding a widget to your site, here are 5 cool recent post widgets that might catch your eye and fit perfectly with your Blogger template:

Style #1

rainbow widget, recent posts
<script style="text/javascript" src="http://helplogger.googlecode.com/svn/trunk/helplogger/recentpoststhumbs.js"></script>
<script style="text/javascript">
var posts_no = 5;
var showpoststhumbs = true;
var readmorelink = true;
var showcommentslink = false;
var posts_date = true;
var post_summary = true;
var summary_chars = 70;
</script>
<script src="/feeds/posts/default?orderby=published&alt=json-in-script&callback=showlatestpostswiththumbs"></script>
<a style="font-size: 9px; color: #CECECE; float: right; margin: 5px;" href="http://helplogger.blogspot.com/2014/11/5-cool-recent-post-widgets-for-blogger.html" rel="nofollow">Recent Posts Widget</a>
<noscript>Your browser does not support JavaScript!</noscript>
<link href='http://fonts.googleapis.com/css?family=Ubuntu+Condensed' rel='stylesheet' type='text/css' />
<style type="text/css">
img.recent-post-thumb {width:50px;height:50px;float:right;margin: 5px -5px 0px 0px; border-radius: 100%; padding: 3px;background: #fff}
.recent-posts-container {font-family: 'Ubuntu Condensed', sans-serif; float: left;width: 100%;min-height: 55px;margin: 5px 0px 5px 0px;padding: 0;font-size:12px;}
ul.recent-posts-container {list-style-type: none; background: #fff;padding: 0px; }
ul.recent-posts-container li:nth-child(1n+0) {background: #F49A9A; width: 100%}
ul.recent-posts-container li:nth-child(2n+0) {background: #FCD092; width: 95%}
ul.recent-posts-container li:nth-child(3n+0) {background: #FFF59E; width: 90%;}
ul.recent-posts-container li:nth-child(4n+0) {background: #E1EFA0; width: 85%;}
ul.recent-posts-container li:nth-child(5n+0) {background: #B1DAEF; width: 80%;}
ul.recent-posts-container li {padding:5px 10px;min-height:50px; list-style-type: none; margin: 0px 5px -5px 5px; color: #777;}
.recent-posts-container a { text-decoration:none; }
.recent-posts-container a:hover { color: #222;}
.post-date {color:#e0c0c6; font-size: 11px; }
.recent-post-title a {font-size: 14px;color: #444; font-weight: bold;}
.recent-post-title {padding: 6px 0px;}
.recent-posts-details a{ color: #222;}
.recent-posts-details {padding: 5px 0px 5px; }
</style>

Style #2

recent posts widget
<div class="recentpoststyle">
<script src="http://helplogger.googlecode.com/svn/trunk/helplogger/recentposts.js"></script>
<script>
var posts_no = 5;var posts_date = true;var post_summary = true;var summary_chars = 80;</script>
<script src="/feeds/posts/default?orderby=published&amp;alt=json-in-script&amp;callback=showlatestposts">
</script><a style="font-size: 9px; color: #CECECE; float: right; margin: 5px;" href="http://helplogger.blogspot.com/2014/11/5-cool-recent-post-widgets-for-blogger.html" rel="nofollow">Recent Posts Widget</a>
<noscript>Your browser does not support JavaScript!</noscript>
<style type="text/css">
.recentpoststyle {counter-reset: countposts;list-style-type: none;}
.recentpoststyle a {text-decoration: none; color: #49A8D1;}
.recentpoststyle a:hover {color: #000;}
.recentpoststyle li:before {content: counter(countposts,decimal);counter-increment: countposts;float: left;z-index: 2;position:relative;font-size: 20px;font-weight: bold;color: #fff;background: #69B7E2; margin: 15px 5px 0px -6px; padding: 0px 10px; border-radius: 100%;}
li.recent-post-title { padding: 5px 0px;}
.recent-post-title { font-family: "Avant Garde",Avantgarde,"Century Gothic",CenturyGothic,AppleGothic,sans-serif;}
.recent-post-title a {color: #444;font-size: 13px; text-decoration: none; padding: 2px; font-weight: bold;}
.post-date {padding: 5px 2px 5px 30px; font-size: 11px; color: #999; margin-bottom: 5px;}
.recent-post-summ { border-left: 1px solid #69B7E2; color: #777; padding: 0px 5px 0px 20px; margin-left: 11px; font-family: Garamond,Baskerville,"Baskerville Old Face","Hoefler Text","Times New Roman",serif; font-size: 15px;}
</style></div>

Style #3

recent posts gadget

<script style="text/javascript" src="http://helplogger.googlecode.com/svn/trunk/helplogger/recentpoststhumbs.js"></script>
<script style="text/javascript">
var posts_no = 5;
var showpoststhumbs = true;
var readmorelink = true;
var showcommentslink = true;
var posts_date = true;
var post_summary = true;
var summary_chars = 70;</script>
<script src="/feeds/posts/default?orderby=published&alt=json-in-script&callback=showlatestpostswiththumbs"></script>
<a style="font-size: 9px; color: #CECECE; float: right; margin: 5px;" href="http://helplogger.blogspot.com" rel="nofollow">Recent Posts Widget</a>
<noscript>Your browser does not support JavaScript!</noscript>
<link href='http://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'/>
<style type="text/css">
img.recent-post-thumb {padding:2px;width:65px;height:65px;float:left;margin: 0px 10px 10px; background: #fff; border: 1px solid #69B7E2;}
.recent-posts-container {font-family: 'Oswald', sans-serif;  float: left;width: 100%;min-height: 70px;margin: 5px 0px 5px 0px;padding: 0;font-size:12px;}
ul.recent-posts-container li {position:relative;padding:5px 0px;min-height:65px; list-style-type: none; margin-bottom: 5px;}
ul.recent-posts-container {counter-reset: countposts;list-style-type: none;}
ul.recent-posts-container li:before {content: counter(countposts,decimal);counter-increment: countposts;z-index: 2;position:absolute; left: 15px; font-size: 13px;font-weight: bold;color: #fff;background: #69B7E2;padding: 4px 10px; border-radius: 100%;}
.recent-posts-container a { text-decoration:none; }
.recent-post-title a {font-size: 13px; text-transform: uppercase; color: #2aace3;}
.recent-posts-details {margin: 5px 0px 0px 92px; }
.recent-posts-details a{ color: #777;}
</style>

Style #4

recent posts for blogger, cool widgets
<script style="text/javascript" src="http://helplogger.googlecode.com/svn/trunk/helplogger/recentposts2.js"></script>
<script style="text/javascript">
var posts_no = 5;
var showpoststhumbs = false;
var readmorelink = true;
var showcommentslink = true;
var posts_date = true;
</script>
<script src="/feeds/posts/default?orderby=published&alt=json-in-script&callback=showlatestpostswiththumbs"></script>
<a style="font-size: 9px; color: #CECECE; float: right; margin: 5px;" href="http://helplogger.blogspot.com">Recent Posts Widget</a>
<noscript>Your browser does not support JavaScript!</noscript>
<link href='http://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'/>
<style type="text/css">
img.recent-post-thumb {padding: 2px; width:35px;height:35px;float:right;margin: -14px 0px 0px 5px; border: 1px solid #cea5ac; border-radius: 10%;}
.recent-posts-container {font-family: 'Oswald', sans-serif;  float: left;width: 100%;min-height: 70px;margin: 5px 0px 5px 0px;padding: 0;font-size:12px;}
ul.recent-posts-container li {position:relative;padding:5px 0px;min-height:65px; list-style-type: none; margin: 0px 10px 5px 35px;}
ul.recent-posts-container {counter-reset: countposts;list-style-type: none;}
ul.recent-posts-container li:before {content: counter(countposts,decimal);counter-increment: countposts;z-index: 2;position:absolute; left: 5px; font-size: 16px;color: #4D4D4D;background: #F7F7F7;padding: 9px 14px; border: 1px solid #efefef;}
.recent-posts-container a { text-decoration:none; }
.recent-posts-container a:hover{color: #4DACE3;}
.post-date {color:#e0c0c6; font-size: 11px; }
.recent-post-title a {font-size: 13px; text-transform: uppercase; color: #5C4D4D;}
.recent-post-title { margin: 5px 0px; }
.recent-posts-details {border-top: 4px solid #AC707A; margin-top: 5px; padding-top: 5px;}
.recent-posts-details a{ color: #888;}
a.readmorelink {color: #4DACE3;}
</style>

Style #5

recent posts, blogger gadget
<script style="text/javascript" src="https://helplogger.googlecode.com/svn/trunk/helplogger/recentposts2.js"></script>
<script style="text/javascript">
var posts_no = 5;
var showpoststhumbs = true;
var readmorelink = true;
var showcommentslink = true;
var posts_date = true;
</script>
<script src="/feeds/posts/default?orderby=published&alt=json-in-script&callback=showlatestpostswiththumbs" rel="nofollow"></script>
<a style="font-size: 9px; color: #CECECE; float: right; margin: 5px;" href="http://helplogger.blogspot.com/2014/11/5-cool-recent-post-widgets-for-blogger.html" rel="nofollow">Recent Posts Widget</a>
<noscript>Your browser does not support JavaScript!</noscript>
<link href='http://fonts.googleapis.com/css?family=Lobster|Gloria+Hallelujah' rel='stylesheet' type='text/css' />
<style type="text/css">
img.recent-post-thumb {width:50px;height:50px;float:right;margin: -4px -35px 0px 0px; border: 4px solid #FCD6CB; border-radius: 100%;}
.recent-posts-container {font-family: 'Gloria Hallelujah', cursive;  float: left;width: 100%;min-height: 55px;margin: 5px 0px 5px 0px;padding: 0;font-size:12px;}
ul.recent-posts-container {counter-reset: countposts;list-style-type: none; background: #fff; }
ul.recent-posts-container li:before {content: counter(countposts,decimal);counter-increment: countposts;z-index: 2;position:absolute; left: -20px; font-size: 16px;color: #616662;background: #FCD6CB;padding: 9px 14px; border-radius: 100%; margin-top: 15px;}
ul.recent-posts-container li {position:relative;padding:5px 0px;min-height:50px; list-style-type: none; margin: -2px 5px 5px 5px;  border-top: 2px solid #FCD6CB;}
ul.recent-posts-container {border: 2px solid #FCD6CB; }
.recent-posts-container a { text-decoration:none; }
.recent-posts-container a:hover { color: #222;}
.post-date {color:#e0c0c6; font-size: 11px; }
.recent-post-title a {font-size: 14px;color: #616662;}
.recent-post-title {padding: 6px 0px;}
.recent-posts-details a{ color: #888;}
.recent-posts-details {padding-bottom: 5px;}
a.readmorelink {color: #4DACE3;}
</style>

How to Add Recent Posts Widget on Blogger

Want to add one of the styles above? Just follow the following steps below:

Step 1. Log in to your Blogger dashboard and click on your blog
Step 2. Go to "Layout" and click the "Add a gadget" link on the right side
Step 3. From the pop-up window, scroll down and select the "HTML/JavaScript" gadget:


Step 4. Paste the code of the chosen widget found below it.
Step 5. Hit the "Save" button... and that's it!

Keep Your Blog Updated

Using a recent post widget for Blogger can truly benefit you and improve your skill as a blogger. As you can see, these designs can look great on Blogger sites, but they do act a little bit like a progress report for the author. If you start to fall behind, the dates on your recent post widget will definitely give you away.

Set a schedule and make sure that you are making regular posts on the blog. These posts will be automatically updated on your widget and readers can view this information whenever they want. Add your recent post widget for Blogger on the every page of the blog or in your template so that these posts can encourage others to continue reading, thus increasing the total time spent on your site.