Today, I've read how to create Google Chrome extension. It's interesting and want to create Blog Feed Reader. That's why I kept going with this article and create a simple extension for blogCFC.
First of all, I need to create a folder for the extension. Then, create manifest.json file and needed to put following coding into it.
2 "name": "Against All Odds Feeds",
3 "version": "1.0",
4 "description": "Fetching RSS Feeds from BlogCFC",
5 "browser_action": {
6 "default_icon": "pps.gif", <!--- icon --->
7 "popup": "RSS.html" <!--- file which read RSS --->
8 },
9 "permissions": [
10 "http://www.ppshein.net/"
11 ]
12}
After that, I need a image to represent the extension on Google Chrome Toolbar.

Android
Top of Page