mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-27 13:29:34 +07:00
* 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>
16 lines
330 B
HTML
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>
|