Files
chrome-extensions-samples/functional-samples/sample.sidepanel-dictionary/sidepanel.html
amysteamdev 064dde640b [SidePanel API] Adds four examples (#890)
* Add global side panel

* Add multiple panes sample

* Add dictionary side panel sample

* Add google.com and action click extension

* Switch to lowercase

* Fix name

* Fix links

* Add screenshots and links

* Tweak google sp

* Remove logs

* Add install reason

* Add default title to action

* Change extension names
Update readme's

* Tweak comments
Add aside

* increase picture size

* Add screenshots

* Add spaces

* Update screenshots

* Update img size

* Refactor multiple panels

* rename action folder to site-specific

* Switch to Side Panel API

* Apply suggestions from Tech review p2

Thanks Oliver!

Co-authored-by: Oliver Dunk <oliverdunk@google.com>

* Add space
Change variable

---------

Co-authored-by: Oliver Dunk <oliverdunk@google.com>
2023-05-03 11:19:49 -05:00

16 lines
330 B
HTML

<html>
<head>
<title>Dictionary Side Panel</title>
</head>
<body>
<h1>Dictionary</h1>
<hr />
<p id="select-a-word">Select a word to see the definition.</p>
<div>
<h2 id="definition-word"></h2>
<p id="definition-text"></p>
</div>
<script src="sidepanel.js"></script>
</body>
</html>