mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-04-03 14:39:37 +07:00
17 lines
363 B
JSON
17 lines
363 B
JSON
{
|
|
"name": "Analytics Sample App",
|
|
"description": "An example app using Google Analytics without the Closure library",
|
|
"version": "1.2.5",
|
|
"manifest_version": 2,
|
|
"icons": {"128": "icon_128.png"},
|
|
"app": {
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
}
|
|
},
|
|
"permissions": [
|
|
"https://www.google-analytics.com/*",
|
|
"storage"
|
|
]
|
|
}
|