mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-28 13:39:44 +07:00
18 lines
314 B
HTML
18 lines
314 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
body {
|
|
background-color: #4CAF50;
|
|
color: white;
|
|
margin: 16px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Yeah! I'm succesfully embedded!</h1>
|
|
<h2>How about sending some data now? Let's try!</h2>
|
|
<h2><pre>{"message": "camera"}</pre></h2>
|
|
</body>
|
|
</html>
|