mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-04-02 14:29:37 +07:00
* Added 2 sandbox samples * Updated readme style * Updated readme for 2nd Sandbox sample * Replaced windows API with Tabs to modernize * Small update to readme * Update api-samples/Sandbox/sandbox/mainpage.js Co-authored-by: Joe Medley <jmedley@google.com> * Update api-samples/Sandbox/sandbox/main.js Co-authored-by: Joe Medley <jmedley@google.com> * Update main.js * Update main.js * Update mainpage.html * Update mainpage.js * Update manifest.json * Update sandbox.html * Update main.js * Update main.js * Update manifest.json * changing folder case * case change * Minor cleanup * Update sandbox.html * Update sandbox.html * Update sandbox.html * Update api-samples/sandbox/sandbox/sandbox.html Co-authored-by: Joe Medley <jmedley@google.com> * Update api-samples/sandbox/sandbox/sandbox.html Co-authored-by: Joe Medley <jmedley@google.com> * Update api-samples/sandbox/sandbox/sandbox.md Co-authored-by: Joe Medley <jmedley@google.com> * Update api-samples/sandbox/sandboxed-content/sandboxed-content.md Co-authored-by: Joe Medley <jmedley@google.com> * Update api-samples/sandbox/sandboxed-content/sandboxed-content.md Co-authored-by: Joe Medley <jmedley@google.com> * Changed filename to service-worker.js * Update api-samples/sandbox/sandbox/mainpage.js Co-authored-by: Joe Medley <jmedley@google.com> * Update api-samples/sandbox/sandbox/manifest.json Co-authored-by: Joe Medley <jmedley@google.com> * Update api-samples/sandbox/sandboxed-content/manifest.json Co-authored-by: Joe Medley <jmedley@google.com> * Update api-samples/sandbox/sandboxed-content/service-worker.js Co-authored-by: Joe Medley <jmedley@google.com> * Update sandbox.md * Update sandboxed-content.md * Update manifest.json * Update manifest.json --------- Co-authored-by: Joe Medley <jmedley@google.com>
14 lines
334 B
HTML
14 lines
334 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Sandboxed Content</title>
|
|
<link rel="stylesheet" href="styles/main.css" />
|
|
</head>
|
|
<body>
|
|
<h1>Main Window</h1>
|
|
<p>I am the main window. I am not sandboxed.</p>
|
|
<iframe src="sandboxed.html" width="380" height="140"></iframe>
|
|
</body>
|
|
</html>
|