Skip to content

Commit

Permalink
Merge pull request #110 from arnellebalane/chore/migrate-to-manifest-v3
Browse files Browse the repository at this point in the history
Update extension to use Manifest V3
  • Loading branch information
arnellebalane authored Feb 8, 2024
2 parents 3073911 + 1df1457 commit dfa6916
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"manifest_version": 2,
"manifest_version": 3,
"name": "Simple Todo",
"version": "1.13.9",

Expand All @@ -14,7 +14,10 @@
"chrome_url_overrides": {
"newtab": "build/index.html"
},
"permissions": ["topSites", "https://simple-todo.arnelle.dev/"],
"permissions": ["topSites"],
"host_permissions": ["https://simple-todo.arnelle.dev/"],

"content_security_policy": "default-src 'self'; style-src 'self' 'unsafe-inline'; font-src 'self'; img-src 'self' data: blob: https: http:; script-src 'self'; connect-src 'self' https://simple-todo.arnelle.dev https://images.unsplash.com https://o31372.ingest.sentry.io"
"content_security_policy": {
"extension_pages": "default-src 'self'; style-src 'self' 'unsafe-inline'; font-src 'self'; img-src 'self' data: blob: https: http:; script-src 'self'; connect-src 'self' https://simple-todo.arnelle.dev https://images.unsplash.com https://o31372.ingest.sentry.io"
}
}

0 comments on commit dfa6916

Please sign in to comment.