e1d63794e5
fix: tabs url and title are privileged information
16 lines
291 B
JSON
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
|
|
}
|