mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-27 13:29:34 +07:00
* Remove docs folder. This was a redirect from a GitHub pages site that does not appear to be in use. * Rename api folder to api-samples. * Move examples to functional-samples folder. * Move cookbook sample to functional-samples. * Move tutorials to functional-samples folder. * Move mv2 and apps folders to _archive. * Rename tools folder to .repo. * Move reference folder to functional-samples. * Update README. Update README with new relative links for reorg. * Update README.md Co-authored-by: amysteamdev <37001393+AmySteam@users.noreply.github.com> --------- Co-authored-by: amysteamdev <37001393+AmySteam@users.noreply.github.com>
116 lines
3.4 KiB
HTML
116 lines
3.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="browser.css">
|
|
<script src="browser.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="controls">
|
|
|
|
<button id="back" title="Go Back">◀</button>
|
|
<button id="forward" title="Go Forward">▶</button>
|
|
<button id="home" title="Go Home">⌂</button>
|
|
<button id="reload" title="Reload">⟳</button>
|
|
<button id="terminate" title="Simulate Crash">☠</button>
|
|
<button id="clear-data" title="Clear Data">♻</button>
|
|
|
|
<form id="location-form">
|
|
<div id="center-column">
|
|
<input id="location" type="text" value="http://www.google.com/">
|
|
</div>
|
|
<input type="submit" value="Go">
|
|
</form>
|
|
|
|
<button id="zoom" title="Change Zoom">🔎</button>
|
|
<button id="find" title="Find in Page">🔦</button>
|
|
|
|
</div>
|
|
|
|
<div id="zoom-box">
|
|
<form id="zoom-form">
|
|
<input id="zoom-text" type="text">
|
|
<input type="submit" value="🔎">
|
|
<button id="zoom-in">➕</button>
|
|
<button id="zoom-out">➖</button>
|
|
</form>
|
|
</div>
|
|
|
|
<div id="find-box">
|
|
<form id="find-form">
|
|
<input id="find-text" type="text">
|
|
<div id="find-results"></div>
|
|
<input type="submit" style="position:absolute; visibility:hidden">
|
|
<button id="match-case">aA</button>
|
|
<button id="find-backward"><</button>
|
|
<button id="find-forward">></button>
|
|
</form>
|
|
</div>
|
|
|
|
<div id="clear-data-overlay" class="overlay"></div>
|
|
<div id="clear-data-confirm">
|
|
<h2>Clear browsing data</h2>
|
|
<p>
|
|
Select to clear the following items:
|
|
</p>
|
|
<li id="clear-data-checkbox">
|
|
<label>
|
|
<input type="checkbox" id="clear-appcache"></input>
|
|
<span>App cache</span>
|
|
</label>
|
|
</li>
|
|
<li id="clear-data-checkbox">
|
|
<label>
|
|
<input type="checkbox" id="clear-cookies"></input>
|
|
<span>Cookies</span>
|
|
</label>
|
|
</li>
|
|
<li id="clear-data-checkbox">
|
|
<label>
|
|
<input type="checkbox" id="clear-fs"></input>
|
|
<span>File system</span>
|
|
</label>
|
|
</li>
|
|
<li id="clear-data-checkbox">
|
|
<label>
|
|
<input type="checkbox" id="clear-indexedDB"></input>
|
|
<span>Indexed DB</span>
|
|
</label>
|
|
</li>
|
|
<li id="clear-data-checkbox">
|
|
<label>
|
|
<input type="checkbox" id="clear-localStorage"></input>
|
|
<span>Local storage</span>
|
|
</label>
|
|
</li>
|
|
<li id="clear-data-checkbox">
|
|
<label>
|
|
<input type="checkbox" id="clear-webSQL"></input>
|
|
<span>WebSQL</span>
|
|
</label>
|
|
</li>
|
|
<li id="clear-data-checkbox">
|
|
<label>
|
|
<input type="checkbox" id="clear-cache"></input>
|
|
<span>Cache</span>
|
|
</label>
|
|
</li>
|
|
|
|
<br>
|
|
|
|
<button id="clear-data-cancel">Cancel</button>
|
|
<button id="clear-data-ok">Clear browsing data</button>
|
|
</div>
|
|
|
|
<webview src="http://www.google.com/" style="width:640px; height:480px"></webview>
|
|
|
|
<div id="sad-webview">
|
|
<div id="sad-webview-icon">☢</div>
|
|
<h2 id="crashed-label">Aw, Snap!</h2>
|
|
<h2 id="killed-label">He's Dead, Jim!</h2>
|
|
|
|
<p>Something went wrong while displaying this webpage.
|
|
To continue, reload or go to another page.</p>
|
|
</div>
|
|
</body>
|
|
</html>
|