Tag Archive : Browser

Google Chrome Browser – Extensions – Top Suggested Tools

0
Digg me

<< Part 1 of Holiday Gift  Series
Google Chrome Browser
Here is a list of some extensions for Everyday User http://www.gchandra.com/scripts/?p=354
 
WOT
Web of Trust is a safe browsing tool, which warns you about risky sites that cheat customers, deliver malware or send spam
https://chrome.google.com/extensions/detail/bhmmomiinigofkjcapegjjndpbikblnp
IE Tab
For websites which likes only IE. This extension will come in handy.
https://chrome.google.com/extensions/detail/hehijbfgiekmjfkfjpbkbammjbdenadd
Docs PDF/PowerPoint Viewer (by Google)
https://chrome.google.com/extensions/detail/nnbmlagghjjcbdhgmkedmbmedengocbn
FlashBlock
Block them all, or be selective with the embedded whitelist manager.
https://chrome.google.com/extensions/detail/gofhjkjmkpinhpoiabjplobcaignabnl
Awesome Screenshot: Capture & Annotate
Capture the whole page or any portion, annotate it with rectangles, circles, arrows, lines and text, blur sensitive info, one-click upload to share. Support PNG and shortcuts.
https://chrome.google.com/extensions/detail/alelhddbbhepgpmgidjdcjakblofbmce
(to be continued)

How to make your webpage IE8 compatible

3
Digg me

Follow these steps, to make your webpage IE8 compatible. Feel free to add more pointers in comments.
1. Make your webpages Xhtml 1.1 compatible by adding this on top of your .aspx or .html page
< ?xml version="1.0" encoding="UTF-8" ?>
< !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
2. Remove all Inline Styling
Donot use inline styling

[table style="width:100px;height:200px;background-color:#ebebeb;"] [/table]

Instead use

.tableStyle1 {
width:100px;
height:200px;
background-color:#ebebeb;
}

[table class="tableStyle1"] [/table]

Replace ‘[' & ']‘ with ‘< ' and '>‘

3. Validate your CSS using
http://jigsaw.w3.org/css-validator/#validate_by_uri+with_options
Profile : CSS Level 2.1
Medium : ALL
Warnings : ALL or Normal Report

4. Use XHTML equivalents for outdated / deprecated html tags
Click here to view new XHTML Constructs

Browser Comparison

1
Digg me

Recd. this comparison chart via email.

Disable Back Button

0
Digg me

This is one simple way for disabling BACK button.

[body onLoad="history.go(+1)"]