mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-29 13:49:41 +07:00
* Init commit * Add sidepanel open cookbook * Add minimum chrome version * Add 116 on readme * Add extension page Add content script * Tweak * Tweak 2 * ¯\_(ツ)_/¯ * Update readme * Update readme * Change sample name in Readme * Bold Chrome 116 for emphasis * Typo fix
10 lines
257 B
HTML
10 lines
257 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<h1>This is an extension page</h1>
|
|
<p>Click on the button below to open the side panel</p>
|
|
<button id="openSidePanel">Open side panel</button>
|
|
<script src="script.js" type="module"></script>
|
|
</body>
|
|
</html>
|