mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-30 13:59:35 +07:00
18 lines
266 B
JSON
18 lines
266 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Sample of WebGL",
|
|
"version": "2",
|
|
"minimum_chrome_version": "23",
|
|
"icons": {
|
|
"128": "icon_128.png"
|
|
},
|
|
"app": {
|
|
"background": {
|
|
"scripts": ["main.js"]
|
|
}
|
|
},
|
|
"permissions": [
|
|
"pointerLock"
|
|
]
|
|
}
|