blob: e3f369c3c912b2578b8e614c7ce969fa250b3acb (
plain)
| 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
 | {
   "name": "Tacticians Online - Active Battles",
   "manifest_version": 2,
   "version": "0.1",
   "description":
      "Regularly checks if it's your turn to play on Tacticians Online.",
   "icons": {
      "48": "images/to-favicon.svg",
      "96": "images/to-favicon.svg"
   },
  "permissions": [ ],
   "browser_action": {
      "default_icon": "images/to-favicon.svg",
      "default_title": "TO - Active Battles",
      "default_popup": "www/index.html"
   },
   "background": {
      "scripts":
         [
            "www/script/params.js",
            "www/script/main.js",
            "www/script/load.js"
         ]
   }
}
 |