aboutsummaryrefslogtreecommitdiff
path: root/src/js/chrome/manifest.json
blob: bbd87112ab670e1d189a66d362f92eee3d65bce0 (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
{
  "manifest_version": 2,

  "name": "Five UI",
  "version": "0.3",
  "description": "UI Constraint Checker",

  "icons": { "16":  "data/images/fiveui-icon-16.png",
             "48":  "data/images/fiveui-icon-48.png",
             "128": "data/images/fiveui-icon-128.png"
           },

  "background": {
    "persistent": true,
    "page": "data/background.html"
  },

  "options_page": "data/options.html",

  "browser_action": {
    "default_icon": "data/images/fiveui-icon-disabled.png",
    "default_title": "Five UI"
  },
  "permissions": [
    "tabs", "http://*/*", "https://*/*", "history"
  ],

  // We have to relax the content security policy to allow rules to be evaluated:
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}