electron/spec/fixtures/extensions/chrome-tabs/api-async/manifest.json
Shelley Vohr e1d63794e5
fix: chrome.tabs 'url' and 'title' are privileged information (#39595)
fix: tabs url and title are privileged information
2023-08-22 14:56:58 +02:00

16 lines
291 B
JSON

{
"name": "api-async",
"version": "1.0",
"content_scripts": [
{
"matches": [ "<all_urls>"],
"js": ["main.js"],
"run_at": "document_start"
}
],
"permissions": ["tabs"],
"background": {
"service_worker": "background.js"
},
"manifest_version": 3
}