After seeing this article and graphic on the rising cost of food in The New York Times week in review, I was curious about how prices for other stuff has changed in the past year. The Bureau of Labor Statistics provides this data monthly via Consumer Price Index (CPI).
Why they have to provide it in an equal-spaced text file over a plain CSV or a spreadsheet still confuses me, but at least they publish the data regularly, which is more than I can say for other government departments. I originally wanted to see how obesity rates have changed over the past year, but the Centers for Disease Control and Prevention (CDC) hasn't updated obesity trend data since 2009.
In any case, price changes alone are still interesting. Relative to overall inflation (2.7 percent), transportation prices increased the most by far, at plus 9.8 percent. The cost of gasoline alone went up 27.5 percent.
Education also took a hit, going up 4.0 percent. Meanwhile, the cost of apparel and technology went down this past year by 0.6 and 1.4 percent, respectively. Having a baby? Now might be good time to buy some onesies.
i will show you on This tutorial how to creating a simple extension. You'll add an icon to Google Chrome that, when clicked, displays an automatically generated page. The icon and page will look something like this:
You can create and develop extensions using any release of Google Chrome, on Windows, Mac, or Linux.
First i will write an extension that adds a browser action to the toolbar of Google Chrome.
manifest.json, and put this code in it: {
"name": "My First Extension",
"version": "1.0",
"description": "The first extension that I made.",
"browser_action": {
"default_icon": "icon.png"
},
"permissions": [
"http://api.flickr.com/"
]
}
If your extension is valid, its icon appears next to the address bar, and information about the extension appears in the extensions page, as the following screenshot shows
Second step, you'll make your extension do something besides just look good.
manifest.json to add the following line:
...
"browser_action": {
"default_icon": "icon.png",
"popup": "popup.html"
},
...popup.html, and download this file add the code to itpopup.html. It should look something like this: