summaryrefslogtreecommitdiff
path: root/src/webex/permissions.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-06-03 16:21:09 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-06-03 16:21:21 +0530
commite15e56c65a07b5b39c9f781099909469d65eefba (patch)
tree8559db0839b0f5c881da08d9501f63c8c7eee38c /src/webex/permissions.ts
parenta3354306c629ab3ab5f45617f31b90976416105a (diff)
downloadwallet-core-e15e56c65a07b5b39c9f781099909469d65eefba.tar.gz
wallet-core-e15e56c65a07b5b39c9f781099909469d65eefba.tar.bz2
wallet-core-e15e56c65a07b5b39c9f781099909469d65eefba.zip
make permissions work for firefox
Diffstat (limited to 'src/webex/permissions.ts')
-rw-r--r--src/webex/permissions.ts20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/webex/permissions.ts b/src/webex/permissions.ts
new file mode 100644
index 000000000..57ca6dc66
--- /dev/null
+++ b/src/webex/permissions.ts
@@ -0,0 +1,20 @@
+/*
+ This file is part of GNU Taler
+ (C) 2020 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
+ */
+
+export const extendedPermissions = {
+ permissions: ["webRequest", "webRequestBlocking"],
+ origins: ["http://*/*", "https://*/*"],
+}; \ No newline at end of file