28 lines
545 B
JSON
28 lines
545 B
JSON
|
{
|
||
|
"manifest_version": 2,
|
||
|
"name": "screenshare test extension",
|
||
|
"description": "test extension",
|
||
|
"version": "0.1.1",
|
||
|
"minimum_chrome_version": "34",
|
||
|
"icons": {
|
||
|
"16": "logo-16x16.png",
|
||
|
"48": "logo-48x48.png",
|
||
|
"128": "logo-128x128.png"
|
||
|
},
|
||
|
"background": {
|
||
|
"scripts": [ "background.js" ],
|
||
|
"persistent": true
|
||
|
},
|
||
|
"permissions": [
|
||
|
"desktopCapture"
|
||
|
],
|
||
|
"externally_connectable": {
|
||
|
"matches": [
|
||
|
"*://HOSTNAME.com/*"
|
||
|
]
|
||
|
},
|
||
|
"web_accessible_resources": [
|
||
|
"icon.png"
|
||
|
]
|
||
|
}
|