mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-27 13:29:34 +07:00
* First draft * Rename folder * Tweak comments * Update index.html * remove extra closing div * Rename sw file * Apply first round of @sebastianbenz suggestions * Fix import * Update popover * Second tech review round * Removed long list of suggestions Only show past history * Move host permissions * Rename extension and folder * REmove await * Move icons into images folder
31 lines
1.2 KiB
JavaScript
31 lines
1.2 KiB
JavaScript
// Popover API https://chromestatus.com/feature/5463833265045504
|
|
|
|
(async () => {
|
|
const nav = document.querySelector('.navigation-rail__links');
|
|
|
|
const { tip } = await chrome.runtime.sendMessage({ greeting: 'tip' });
|
|
|
|
const tipWidget = createDomElement(`
|
|
<button class="navigation-rail__link" popovertarget="tip-popover" popovertargetaction="show" style="padding: 0; border: none; background: none;>
|
|
<div class="navigation-rail__icon">
|
|
<svg class="icon" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" width="24" height="24" viewBox="0 0 24 24" fill="none">
|
|
<path d='M15 16H9M14.5 9C14.5 7.61929 13.3807 6.5 12 6.5M6 9C6 11.2208 7.2066 13.1599 9 14.1973V18.5C9 19.8807 10.1193 21 11.5 21H12.5C13.8807 21 15 19.8807 15 18.5V14.1973C16.7934 13.1599 18 11.2208 18 9C18 5.68629 15.3137 3 12 3C8.68629 3 6 5.68629 6 9Z'"></path>
|
|
</svg>
|
|
</div>
|
|
<span>Tip</span>
|
|
</button>
|
|
`);
|
|
|
|
const popover = createDomElement(
|
|
`<div id='tip-popover' popover>${tip}</div>`
|
|
);
|
|
|
|
document.body.append(popover);
|
|
nav.append(tipWidget);
|
|
})();
|
|
|
|
function createDomElement(html) {
|
|
const dom = new DOMParser().parseFromString(html, 'text/html');
|
|
return dom.body.firstElementChild;
|
|
}
|