Skip to content

Commit

Permalink
Merge pull request #15 from PavelGolodoniuc/master
Browse files Browse the repository at this point in the history
Upgraded to Manifest V3
  • Loading branch information
reezpatel authored Jul 22, 2022
2 parents 0f83abe + 853fb6e commit 832e1a8
Showing 1 changed file with 9 additions and 13 deletions.
22 changes: 9 additions & 13 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"name": "Seven JSON Viewer",
"description": "Minimal JSON Viewer with JSON Path",
"short_name": "JSON Viewer",
"version": "3.0",
"version": "4.0",
"offline_enabled": true,
"manifest_version": 2,
"manifest_version": 3,
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
Expand All @@ -13,22 +13,18 @@
"all_frames": true
}
],
"content_security_policy": "sandbox allow-scripts; script-src 'self'; object-src 'none';",
"content_security_policy": {
"sandbox": "sandbox allow-scripts; script-src 'self'; object-src 'none';"
},
"permissions": ["tabs", "activeTab", "storage"],
"web_accessible_resources": ["styles.css", "app.js"],
"web_accessible_resources": [{
"resources": ["styles.css"],
"matches": ["<all_urls>"]
}],
"icons": {
"16": "assets/icon-16.png",
"48": "assets/icon-48.png",
"128": "assets/icon-128.png",
"512": "assets/icon-512.png"
},
"browser_action": {
"default_popup": "index.html",
"default_icon": {
"16": "assets/icon-16.png",
"48": "assets/icon-48.png",
"128": "assets/icon-128.png",
"512": "assets/icon-512.png"
}
}
}

0 comments on commit 832e1a8

Please sign in to comment.