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

18 lines
496 B
JSON

{
"name": "Fetching Titles",
"version": "0.1",
"manifest_version": 3,
"description": "This extension fetches the titles of all the tabs in the current window and displays them in a side panel.",
"background": {
"service_worker": "dist/background.js"
},
"permissions": ["activeTab", "sidePanel"],
"host_permissions": ["<all_urls>"],
"side_panel": {
"default_path": "sidepanel/index.html"
},
"action": {
"default_title": "Fetch the title of the current tab"
}
}