mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-04-03 14:39:37 +07:00
23 lines
429 B
JSON
23 lines
429 B
JSON
{
|
|
"name": "World Clock",
|
|
"version": "0.1.5",
|
|
"manifest_version": 2,
|
|
"minimum_chrome_version": "23",
|
|
"description": "A world clock application.",
|
|
"icons": {
|
|
"16": "assets/icon.png",
|
|
"128": "assets/icon.png"
|
|
},
|
|
"app": {
|
|
"background": {
|
|
"scripts": ["main.js"]
|
|
}
|
|
},
|
|
"offline_enabled": true,
|
|
"permissions": ["geolocation",
|
|
"storage",
|
|
"notifications",
|
|
"<all_urls>"
|
|
]
|
|
}
|