This commit is contained in:
Armani Ferrante 2021-04-07 03:30:48 +08:00
parent 699558770e
commit 1a2ad5d5bd
No known key found for this signature in database
GPG Key ID: D597A80BCF8E12B7
1 changed files with 19 additions and 4 deletions

View File

@ -16,9 +16,25 @@
"persistent": false,
"scripts": ["background.js"]
},
"permissions": [
"storage"
],
"permissions": [
"notifications",
"activeTab",
"contextMenus",
"storage",
"usb",
{
"usbDevices": [
{
"vendorId": 11415,
"productId": 1
},
{
"vendorId": 11415,
"productId": 4
}
]
}
],
"content_scripts": [
{
"matches": ["file://*/*", "http://*/*", "https://*/*"],
@ -32,4 +48,3 @@
"web_accessible_resources": ["script.js"],
"content_security_policy": "script-src 'self' 'sha256-ek+jXksbUr00x+EdLLqiv69t8hATh5rPjHVvVVGA9ms='; object-src 'self'"
}