mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-27 13:29:34 +07:00
15 lines
328 B
JSON
15 lines
328 B
JSON
{
|
|
"name": "Google Analytics Demo",
|
|
"description": "How to use Google Analytics 4 in your extension.",
|
|
"version": "1.0",
|
|
"manifest_version": 3,
|
|
"action": {
|
|
"default_popup": "popup/popup.html"
|
|
},
|
|
"permissions": ["storage"],
|
|
"background": {
|
|
"service_worker": "service-worker.js",
|
|
"type": "module"
|
|
}
|
|
}
|