Browser manifest updates (#840)
* Remove options_page * Remove applications entry * Update default content_security_policy * Add browser-specific build variants * Update default manifest * Increase Firefox min version to 57
This commit is contained in:
parent
c8b738ddf7
commit
22932e02cb
@ -62,7 +62,6 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"minimum_chrome_version": "57.0.0.0",
|
"minimum_chrome_version": "57.0.0.0",
|
||||||
"options_page": "bg/settings.html",
|
|
||||||
"options_ui": {
|
"options_ui": {
|
||||||
"page": "bg/settings.html",
|
"page": "bg/settings.html",
|
||||||
"open_in_tab": true
|
"open_in_tab": true
|
||||||
@ -103,28 +102,67 @@
|
|||||||
"fg/float.html",
|
"fg/float.html",
|
||||||
"bg/template-renderer.html"
|
"bg/template-renderer.html"
|
||||||
],
|
],
|
||||||
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
|
"content_security_policy": "script-src 'self'; object-src 'self'"
|
||||||
"applications": {
|
|
||||||
"gecko": {
|
|
||||||
"id": "alex@foosoft.net",
|
|
||||||
"strict_min_version": "55.0"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"variants": [
|
"variants": [
|
||||||
{
|
{
|
||||||
"name": "default",
|
"name": "chrome",
|
||||||
"fileName": "yomichan.zip",
|
"fileName": "yomichan-chrome.zip"
|
||||||
"fileCopies": [
|
},
|
||||||
"yomichan.xpi"
|
{
|
||||||
|
"name": "chrome-dev",
|
||||||
|
"fileName": "yomichan-chrome-dev.zip",
|
||||||
|
"modifications": [
|
||||||
|
{
|
||||||
|
"action": "replace",
|
||||||
|
"path": ["name"],
|
||||||
|
"pattern": "^.*$",
|
||||||
|
"patternFlags": "",
|
||||||
|
"replacement": "$& (development build)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"action": "replace",
|
||||||
|
"path": ["description"],
|
||||||
|
"pattern": "^(.*)(?:\\.\\s*)?$",
|
||||||
|
"patternFlags": "",
|
||||||
|
"replacement": "$1. This is a development build; get the stable version here: https://tinyurl.com/yaatdjmp"
|
||||||
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "dev",
|
"name": "firefox",
|
||||||
"fileName": "yomichan-dev.zip",
|
"fileName": "yomichan-firefox.xpi",
|
||||||
"fileCopies": [
|
"modifications": [
|
||||||
"yomichan-dev.xpi"
|
{
|
||||||
],
|
"action": "remove",
|
||||||
|
"path": ["web_accessible_resources"],
|
||||||
|
"item": "bg/template-renderer.html"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"action": "delete",
|
||||||
|
"path": ["sandbox"]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"action": "set",
|
||||||
|
"path": ["content_security_policy"],
|
||||||
|
"value": "script-src 'self' 'unsafe-eval'; object-src 'self'"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"action": "set",
|
||||||
|
"path": ["browser_specific_settings"],
|
||||||
|
"value": {
|
||||||
|
"gecko": {
|
||||||
|
"id": "alex@foosoft.net",
|
||||||
|
"strict_min_version": "57.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "firefox-dev",
|
||||||
|
"inherit": "firefox",
|
||||||
|
"fileName": "yomichan-firefox-dev.xpi",
|
||||||
"modifications": [
|
"modifications": [
|
||||||
{
|
{
|
||||||
"action": "replace",
|
"action": "replace",
|
||||||
@ -142,7 +180,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"action": "set",
|
"action": "set",
|
||||||
"path": ["applications", "gecko", "id"],
|
"path": ["browser_specific_settings", "gecko", "id"],
|
||||||
"value": "alex.testing@foosoft.net"
|
"value": "alex.testing@foosoft.net"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -61,7 +61,6 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"minimum_chrome_version": "57.0.0.0",
|
"minimum_chrome_version": "57.0.0.0",
|
||||||
"options_page": "bg/settings.html",
|
|
||||||
"options_ui": {
|
"options_ui": {
|
||||||
"page": "bg/settings.html",
|
"page": "bg/settings.html",
|
||||||
"open_in_tab": true
|
"open_in_tab": true
|
||||||
@ -102,11 +101,5 @@
|
|||||||
"fg/float.html",
|
"fg/float.html",
|
||||||
"bg/template-renderer.html"
|
"bg/template-renderer.html"
|
||||||
],
|
],
|
||||||
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
|
"content_security_policy": "script-src 'self'; object-src 'self'"
|
||||||
"applications": {
|
|
||||||
"gecko": {
|
|
||||||
"id": "alex@foosoft.net",
|
|
||||||
"strict_min_version": "55.0"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user