| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <title>Installation Successful! | URL Fixer</title> | |
| 5 <link href="reset.css" rel="stylesheet" type="text/css" /> | |
| 6 <link href="style.css" rel="stylesheet" type="text/css" /> | |
| 7 <link href="fancybox/jquery.fancybox-1.3.4.css" rel="stylesheet" type="text/ css" /> | |
| 8 <script type="text/javascript" src="jquery-1.7.1.min.js"></script> | |
| 9 <script type="text/javascript" src="fancybox/jquery.fancybox-1.3.4.pack.js"> </script> | |
|
Wladimir Palant
2016/12/01 13:13:43
I changed the paths above to relative, same with t
| |
| 10 | |
| 11 <script type="text/javascript"> | |
| 12 $(document).ready(function() | |
| 13 { | |
| 14 $("a.lightbox").fancybox({ | |
| 15 overlayColor: "#000", | |
| 16 transitionIn: "elastic", | |
| 17 transitionOut: "elastic", | |
| 18 titlePosition: "outside" | |
| 19 }); | |
| 20 }); | |
|
Wladimir Palant
2016/12/01 13:13:43
There was some additional logic related to the dat
| |
| 21 </script> | |
| 22 | |
| 23 <style type="text/css"> | |
| 24 #thumbnails | |
| 25 { | |
| 26 margin: 0px 20px; | |
| 27 float: right; | |
| 28 } | |
| 29 #thumbnails a | |
| 30 { | |
| 31 display: block; | |
| 32 margin-bottom: 30px; | |
| 33 } | |
| 34 #thumbnails a img | |
| 35 { | |
| 36 width: 200px; | |
| 37 height: 150px; | |
| 38 } | |
| 39 | |
| 40 #middle h2 | |
| 41 { | |
| 42 font-size: 28px; | |
| 43 padding-bottom: 10px; | |
| 44 } | |
| 45 #middle h3 | |
| 46 { | |
| 47 font-size: 22px; | |
| 48 padding-bottom: 10px; | |
| 49 } | |
| 50 #middle p | |
| 51 { | |
| 52 font-size: 16px; | |
| 53 line-height: 26px; | |
| 54 margin-bottom: 18px; | |
| 55 } | |
| 56 </style> | |
| 57 </head> | |
| 58 <body> | |
| 59 <div id="page"> | |
| 60 <div id="top"> | |
| 61 <div class="frame"> | |
| 62 <h1><img src="logo.png" alt="URL Fixer" /></h1> | |
| 63 <div class="clear"></div> | |
| 64 </div> | |
| 65 </div> | |
| 66 | |
| 67 <div id="middle"> | |
| 68 <div class="frame"> | |
| 69 <h2>Installation Successful</h2> | |
| 70 | |
| 71 <div id="thumbnails"> | |
| 72 <a class="lightbox" href="screenshot2-big.png"><img src="screenshot2 .png" /></a> | |
| 73 <a class="lightbox" href="screenshot3-big.png"><img src="screenshot3 .png" /></a> | |
| 74 <a class="lightbox" href="screenshot4-big.png"><img src="screenshot4 .png" /></a> | |
| 75 </div> | |
| 76 | |
| 77 <h3>How It Works</h3> | |
| 78 | |
| 79 <p> | |
| 80 URL Fixer fixes common typos in URLs entered in the address bar. It will | |
| 81 fix errors like "google.con" or "youtube,com". You have the option o f | |
| 82 being asked to confirm corrections before they are applied. | |
| 83 <a href="screenshot2-big.png" class="lightbox">(screenshot)</a> | |
| 84 </p> | |
| 85 | |
| 86 <p> | |
| 87 With URL Fixer, you can also specify your own set of custom correcti ons. | |
| 88 Add or remove your own corrections in URL Fixer's options dialog, | |
| 89 accessible via <em>Tools</em> » <em>Add-ons</em> » <em>U RL | |
| 90 Fixer</em> » <em>Preferences</em>. | |
| 91 <a href="screenshot3-big.png" class="lightbox">(screenshot)</a> | |
| 92 </p> | |
| 93 | |
| 94 <p> | |
| 95 You can also correct errors as they happen; if Firefox can't find th e | |
| 96 website you typed in, URL Fixer lets you mark that URL as a typo, an d | |
| 97 you'll never see that error page again. | |
| 98 <a href="screenshot4-big.png" class="lightbox">(screenshot)</a> | |
| 99 </p> | |
| 100 | |
| 101 <div class="clear"></div> | |
| 102 </div> | |
| 103 </div> | |
| 104 | |
| 105 <div id="footer"> | |
| 106 <p> | |
| 107 Open-source software released under <a href="http://www.mozilla.org/MP L/1.1/">Mozilla Public License</a> | |
|
Thomas Greiner
2016/12/07 16:08:32
We're using GPLv3 for URL Fixer, aren't we? Based
Wladimir Palant
2016/12/08 13:02:23
Done.
| |
| 108 | | |
| 109 <a href="https://addons.mozilla.org/addon/url-fixer/privacy/">Privacy Policy</a> | |
|
Wladimir Palant
2016/12/01 13:13:43
There was an imprint link here, I removed it given
| |
| 110 </p> | |
| 111 <div class="clear"></div> | |
| 112 </div> | |
| 113 </div> | |
| 114 </body> | |
| 115 </html> | |
| OLD | NEW |