aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/x11vkbwrapper/chromeextension/manifest.json
blob: 04608b78a738b18407389c58b59554425da48f23 (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
33
34
35
36
{
  "manifest_version": 2,
  "key": "bbngehjagobenpfgjcpmfigfanlomdkk",
  "name": "Qt Virtual Keyboard",
  "version": "1.0",
  "browser_action": {
    "default_icon": {
      "32": "icons/Qt_logo.png"
    },
    "default_title": "Qt Keyboard"
  },
  "permissions": [
    "*://*/*",
    "tabs",
    "storage",
    "nativeMessaging",
    "notifications",
    "webNavigation",
    "input",
    "idle",
    "bookmarks"
  ],
  "background": {
    "scripts": [ "background.js" ],
    "persistent": false
  },
  "icons": {
    "32": "icons/Qt_logo.png"
  },
  "content_scripts": [
    {
      "matches" : ["*://*/*"],
      "js": ["content.js"]
    }
  ]
}