Skip to content

Commit

Permalink
Begin adapting to manifest v3 for #117
Browse files Browse the repository at this point in the history
  • Loading branch information
machawk1 committed Dec 20, 2020
1 parent d9f57cc commit 286b6b0
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"manifest_version": 2,
"manifest_version": 3,
"name": "WARCreate",
"version": "0.2019.1.19",
"version_name": "0.2019.1.19 build 612",
Expand All @@ -11,7 +11,7 @@
"128" : "icons/icon-128.png"
},
"background": {
"page":"html/background.html"
"service_worker": "code.js"
},
"homepage_url": "http://warcreate.com",

Expand All @@ -21,29 +21,33 @@
"js": ["js/jquery-2.1.1.min.js","js/content.js"]
}
],
"page_action" :
"action" :
{
"default_icon" : "icons/icon-19.png",
"default_title" : "WARCreate",
"default_popup" : "html/popup.html"
},
"permissions" : [
"webRequest",
"webRequestBlocking",
// "webRequestBlocking",
"tabs",
"activeTab",
"storage",
"unlimitedStorage",
"http://*/*",
"http://*/",
"*://*/*",
"notifications"
],
"host_permissions": [
"http://*/*",
"http://*/",
"*://*/*"
],
"options_ui": {
"page": "html/options.html"
},
"short_name" : "WARCreate",

"content_security_policy": "script-src 'self'; object-src 'self'",
"minimum_chrome_version": "23.0"
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"minimum_chrome_version": "87"
}

0 comments on commit 286b6b0

Please sign in to comment.