-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
57 lines (57 loc) · 1.27 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
47
48
49
50
51
52
53
54
55
56
57
{
"name": "Hangout Circle Pong",
"version": "0.0.1",
"description": "Hangout Circle Pong",
"icons": {
"16": "img/icon16.png",
"32": "img/icon32.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"permissions": [
"tabs",
"management",
"http://talkgadget.google.com/*",
"https://talkgadget.google.com/*"
],
"browser_action": {
"default_icon": "img/icon32.png"
},
"options_page": "options.html",
"background_page": "background.html",
"content_scripts": [
{
"matches": [
"https://talkgadget.google.com/talkgadget/*"
],
"js": [
"js/base.js",
"js/injection/talk_injection.js"
],
"run_at": "document_end",
"all_frames": true
},
{
"matches": [
"https://talkgadget.google.com/hangouts*"
],
"js": [
"js/base.js",
"js/injection/hangout_injection.js"
],
"run_at": "document_end",
"all_frames": true
},
{
"matches": [
"https://googlesharedspaces.appspot.com/p/tuna*"
],
"js": [
"js/base.js",
"js/injection/user_injection.js"
],
"run_at": "document_end",
"all_frames": true
}
]
}