Files
patrick kettner d2fd736ac0 Add an example that shows how to polyfill XHR in an extension (#1343)
* add an example that shows how to polyfill XHR in an extension

* updates from feedback

* update based on third party OSS requirements

* update readme links
2024-11-07 04:30:06 -05:00

3 lines
142 B
JavaScript

const fetchedTitle = new URLSearchParams(location.search).get('title');
document.body.innerText = `This tab has the title "${fetchedTitle}"`;