mirror of
https://github.com/fergalmoran/chrometophone.git
synced 2025-12-22 09:41:51 +00:00
87 lines
2.9 KiB
HTML
87 lines
2.9 KiB
HTML
<!--
|
|
Copyright 2010 Google Inc.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<html>
|
|
<head>
|
|
<title>Google Chrome to Phone Extension</title>
|
|
|
|
<style type="text/css">
|
|
body, td {
|
|
min-width: 320px;
|
|
overflow-x: hidden;
|
|
font-family: verdana;
|
|
font-size: 12px;
|
|
color: black;
|
|
background-color: white;
|
|
}
|
|
</style>
|
|
|
|
<script src="chrome_ex_oauthsimple.js"></script>
|
|
<script src="chrome_ex_oauth.js"></script>
|
|
<script src="send_logic.js"></script>
|
|
<script src="help.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="sign_in_out_div"></div>
|
|
<b><div id="msg"></div></b><a id="signout" href="#" style="color: gray;"></a></p>
|
|
<h1><img src="icon_128.png" width="64" height="64" valign="bottom"> Google Chrome to Phone Extension</h1>
|
|
|
|
<div id="just_signed_in_div"></div>
|
|
|
|
<h2 style="padding-left: 10px" i18n-message="about_title_message"></h2>
|
|
<p style="padding-left: 10px" i18n-message="about_message"></p>
|
|
|
|
<h2 style="padding-left: 10px" i18n-message="features_title_message"></h2>
|
|
|
|
<ul>
|
|
<li i18n-message="features_message1"></li>
|
|
<li i18n-message="features_message2"></li>
|
|
<li i18n-message="features_message3"></li>
|
|
<li i18n-message="features_message4"></li>
|
|
<li i18n-message="features_message5"></li>
|
|
</ul>
|
|
|
|
<table width="1131px">
|
|
<tr>
|
|
<td width="33%"><img src="comic1.png"></td>
|
|
<td width="33%"><img src="comic2.png"></td>
|
|
<td width="33%"><img src="comic3.png"></td>
|
|
</tr>
|
|
<tr>
|
|
<td></td>
|
|
<td style="padding-left: 10px" i18n-message="step2_message"></td>
|
|
<td style="padding-left: 10px" i18n-message="step3_message"></td>
|
|
</tr>
|
|
<tr>
|
|
<td width="33%"><img id="comic4" src="comic4.png"></td>
|
|
<td width="33%"><img src="comic5.png"></td>
|
|
<td width="33%"><img src="comic6.png"></td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding-left: 10px"><span i18n-message="step4_message"></span>
|
|
<b><a href="#" onmouseover="document.getElementById('comic4').src='qr_code.png'" onmouseout="document.getElementById('comic4').src='comic4.png'">(QR)</a></b>
|
|
</td>
|
|
<td style="padding-left: 10px" i18n-message="step5_message"></td>
|
|
<td style="padding-left: 10px" i18n-message="step6_message"></td>
|
|
</tr>
|
|
</table>
|
|
<br>
|
|
<div align="center">©2010 Google - <a href="http://www.google.com/intl/en/about.html" i18n-message="about_google_message"></a> -
|
|
<a href="http://www.google.com/privacy.html" i18n-message="privacy_message"></a> - <a id="gallery_tos_link" i18n-message="tos_message"></a></div>
|
|
</body>
|
|
</html>
|