diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-09-26 13:40:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-26 13:40:09 -0400 |
commit | 22932e02cbd1fb16d0180c79a3c9b4d1790fbfda (patch) | |
tree | 786afa0c68ed83436bd58811f2c0431c66b80c84 /ext | |
parent | c8b738ddf7a6d92d84a1d599e4d59889f6195ce5 (diff) |
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
Diffstat (limited to 'ext')
-rw-r--r-- | ext/manifest.json | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/ext/manifest.json b/ext/manifest.json index 59c88072..9333c5ae 100644 --- a/ext/manifest.json +++ b/ext/manifest.json @@ -61,7 +61,6 @@ } ], "minimum_chrome_version": "57.0.0.0", - "options_page": "bg/settings.html", "options_ui": { "page": "bg/settings.html", "open_in_tab": true @@ -102,11 +101,5 @@ "fg/float.html", "bg/template-renderer.html" ], - "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", - "applications": { - "gecko": { - "id": "alex@foosoft.net", - "strict_min_version": "55.0" - } - } + "content_security_policy": "script-src 'self'; object-src 'self'" } |