Musings of a computer science student
What is a browser?
I just remembered this video today. It’s a great look at what people think a browser is. It’s incredible how many people confuse a browser with a search engine.
Now that the browser ballot has come into effect in the EU, will this lead people to be more educated about what a browser is? The browser ballot page has no information as to what a browser is and what it is for. As the video shows, many people are ignorant on the subject. Choosing a good browser is not something easy for those that have no idea what this is.
What would you do to increase awareness on web browsers and other important Internet technologies most users ignore?
| Print article | This entry was posted by Juliana Peña on March 8, 2010 at 11:18 am, and is filed under Tech issues. Follow any responses to this post through RSS 2.0. You can leave a response or trackback from your own site. |


No comments yet.
No trackbacks yet.
Cómo crear una extensión de Chrome
about 3 months ago - View Comments
Les comparto una presentación de cómo hacer una extensión para Chrome. Esta presentación la usé para un taller que di originalmente en el Día ISC del Tec CEM el 7 de abril de 2010 y luego de nuevo en FLISoL Toluca el 24 de abril de 2010. Puedes descargar los assets del taller, incluyendo la
Presentación: Extensiones de Chrome
about 5 months ago - View Comments
Aquí está la presentación que di este sábado en la reunión del Google Technology Users Group (GTUG) de México.
New versions of Postponer and ChromeMilk released
about 5 months ago - View Comments
I’ve released new versions of my Chrome extensions Postponer and ChromeMilk. Postponer 0.4 add a one-click add mode to Adder and customizable popup size to Manager, as well as a few bug fixes. ChromeMilk 0.9.6 features a brand new icon as well as numerous bug fixes. As always, you can get them from the Chrome
My Opera Rant
about 5 months ago - View Comments
Oh, Opera… You are the browser that standardized tabbed browsing, new tab pages, browser synching, and so many more innovative features. You are one of the fastest and most standards-compliant browsers. You are the browser that pushes development of other browsers forward. Yet you can barely break 2% market adoption. Why is that? Why, for
New version of Postponer, now with Google Reader integration!
about 6 months ago - View Comments
I’ve released a new version of Postponer, my Google Chrome extensions for managing your Read It Later reading list. The best new feature is Google Reader integration. Now an icon will appear next to article titles so you can add the article directly to your reading list, similar to the official Firefox extension. The Google
Help me translate ChromeMilk and Postponer
about 6 months ago - View Comments
Image by Beekman Google has sent me an email asking me to translate my extensions using the new Chrome Extensions i18n API. I’m only fluent in English and Spanish, but I want the whole world to enjoy my extensions. If you know any of the languages supported by Chrome and would like to help me
How to build a Chrome extension, Part 4: Background pages and scheduling requests
about 7 months ago - View Comments
One of the most common uses for an extension is as a notifier. For example, the Google Gmail Checker, an official Google extension and the most popular one in the gallery, constantly checks your Gmail inbox for new unread mail. This functionality is easy to add into your own extension. You need to add a
How to build a Chrome extension, Part 3: Loading any web page in a popup
about 7 months ago - View Comments
Chrome allows extensions that use its page action or browser action API to show popups when clicked. To add this popup, you’d add a popup.html file to your extension and the following to the manifest.json for browser actions: { “name”: “My Extension”, … “browser_action”: { “default_icon”: “myicon.png”, “popup”: “popup.html” } … } Or for page
How to build a Chrome extension, Part 2: Options and localStorage
about 7 months ago - View Comments
An important aspect of almost all extensions is being able to save user settings. This can be achieved in Chrome easily by using the localStorage object and Chrome’s extension API options page. Adding an options page To add an options page to your extension, make an options.html file in your extension’s folder and add the
How to build a Chrome extension, Part 1: Basics
about 7 months ago - View Comments
Building Chrome extensions is super-easy. I’ve already made two: ChromeMilk and Postponer. I wanted so share my method of building extensions, so I’m going to write a series of posts. This one will cover the basics on how to set up a good development environment and how to begin writing the extensions. 1. Install Chrome