-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest.json
46 lines (46 loc) · 1.15 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
// Extension ID: knldjmfmopnpolahpmmgbagdohdnhkik
"key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDcBHwzDvyBQ6bDppkIs9MP4ksKqCMyXQ/A52JivHZKh4YO/9vJsT3oaYhSpDCE9RPocOEQvwsHsFReW2nUEc6OLLyoCFFxIb7KkLGsmfakkut/fFdNJYh0xOTbSN8YvLWcqph09XAY2Y/f0AL7vfO1cuCqtkMt8hFrBGWxDdf9CQIDAQAB",
"name": "AcerWebVREmulator",
"version": "1.0",
"manifest_version": 2,
"description": "Acer WebVR Emulator",
"icons": {
"128": "webvr_extension128.png"
},
"browser_action": {
"default_icon": {
"16": "webvr_extension16.png",
"24": "webvr_extension24.png"
},
"default_title": "AcerWebVREmulator",
"default_popup": "main.html"
},
"options_page": "index.html",
// "app": {
// "launch": {
// "local_path": "main.html"
// }
// },
"background": {
"scripts": ["background.js" ],
"persistent": true
},
"permissions": [
"nativeMessaging",
"activeTab",
"storage",
"<all_urls>",
"contextMenus",
"tabs"
],
"web_accessible_resources": [
"polyfill.js"
],
"content_scripts": [{
"matches": ["<all_urls>"],
"js": ["content-script.js" ],
"run_at": "document_start",
"all_frames": true
} ]
}