Bump minimum safari/ios version to 15.4.

This commit is contained in:
Ryan Breen
2023-01-23 22:22:30 -05:00
parent 5b9480622e
commit 3027bb9037
4 changed files with 34 additions and 20 deletions

View File

@@ -1,11 +1,9 @@
{
"manifest_version": 3,
"default_locale": "en",
"name": "__MSG_extension_name__",
"description": "__MSG_extension_description__",
"version": "1.0",
"icons": {
"48": "images/icon-48.png",
"96": "images/icon-96.png",
@@ -13,17 +11,20 @@
"256": "images/icon-256.png",
"512": "images/icon-512.png"
},
"background": {
"service_worker": "background.build.js",
"type": "module"
},
"content_scripts": [{
"js": [ "content.build.js" ],
"matches": [ "<all_urls>" ]
}],
"content_scripts": [
{
"js": [
"content.build.js"
],
"matches": [
"<all_urls>"
]
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
@@ -35,17 +36,26 @@
"72": "images/toolbar-72.png"
}
},
"permissions": [ "storage" ],
"web_accessible_resources": [
{
"resources": ["nostr.build.js", "popup.build.js"],
"matches": ["<all_urls>"]
}
"permissions": [
"storage"
],
"web_accessible_resources": [
{
"resources": [
"nostr.build.js",
"popup.build.js"
],
"matches": [
"<all_urls>"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'unsafe-eval'"
},
"browser_specific_settings": {
"safari": {
"strict_min_version": "15.4"
}
}
}