Skip to content

Commit 80c6d48

Browse files
committed
remove clipboardRead permission access
1 parent e777d74 commit 80c6d48

File tree

2 files changed

+4
-11
lines changed

2 files changed

+4
-11
lines changed

extension/firefox/manifest.json

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,12 @@
2929
"browser_style": false
3030
},
3131
"background": {
32-
"scripts": [
33-
"js/background.bundle.js"
34-
]
32+
"scripts": ["js/background.bundle.js"]
3533
},
3634
"permissions": [
3735
"activeTab",
3836
"storage",
3937
"clipboardWrite",
40-
"clipboardRead",
4138
"http://*/*",
4239
"https://*/*"
4340
],
@@ -47,4 +44,4 @@
4744
"open_in_tab": true,
4845
"browser_style": false
4946
}
50-
}
47+
}

source/manifest.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,24 +34,20 @@
3434
},
3535
"background": {
3636
"__chrome|opera__persistent": false,
37-
"scripts": [
38-
"js/background.bundle.js"
39-
]
37+
"scripts": ["js/background.bundle.js"]
4038
},
4139
"__chrome__minimum_chrome_version": "49",
4240
"__opera__minimum_opera_version": "36",
4341
"__chrome|opera__permissions": [
4442
"activeTab",
4543
"storage",
46-
"clipboardRead",
4744
"http://*/*",
4845
"https://*/*"
4946
],
5047
"__firefox__permissions": [
5148
"activeTab",
5249
"storage",
5350
"clipboardWrite",
54-
"clipboardRead",
5551
"http://*/*",
5652
"https://*/*"
5753
],
@@ -63,4 +59,4 @@
6359
"__chrome__chrome_style": false,
6460
"__firefox|opera__browser_style": false
6561
}
66-
}
62+
}

0 commit comments

Comments
 (0)