aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/x11vkbwrapper/chromeextension/manifest.json
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/x11vkbwrapper/chromeextension/manifest.json')
-rw-r--r--tests/manual/x11vkbwrapper/chromeextension/manifest.json36
1 files changed, 36 insertions, 0 deletions
diff --git a/tests/manual/x11vkbwrapper/chromeextension/manifest.json b/tests/manual/x11vkbwrapper/chromeextension/manifest.json
new file mode 100644
index 00000000..04608b78
--- /dev/null
+++ b/tests/manual/x11vkbwrapper/chromeextension/manifest.json
@@ -0,0 +1,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"]
+ }
+ ]
+}