forked from drheld/isotropic_dominion_extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
28 lines (28 loc) · 816 Bytes
/
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
{
"content_scripts": [
{
"js": [ "jquery.js", "card_list.js", "dominion.js" ],
"matches": [ "http://dominion.isotropic.org/play" ]
},
{
"js": [ "jquery.js", "card_list.js", "dominion.js", "debugger.js" ],
"matches": [ "http://*.dominion-point-counter.appspot.com/debug*" ]
},
{
"js": [ "jquery.js", "options.js" ],
"matches": [ "http://dominion.isotropic.org/" ]
},
{
"js": [ "login.js" ],
"matches": [ "http://dominion.isotropic.org/*loggedin*" ]
}
],
"permissions": [
"http://dominion.isotropic.org/",
"http://dominion-point-counter.appspot.com/"
],
"description": "Dominion Point Counter",
"name": "Dominion Point Counter",
"background_page": "background.html",
"version": "4.7.2"
}