mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-27 13:29:34 +07:00
* 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
3 lines
142 B
JavaScript
3 lines
142 B
JavaScript
const fetchedTitle = new URLSearchParams(location.search).get('title');
|
|
document.body.innerText = `This tab has the title "${fetchedTitle}"`;
|