Created
June 30, 2022 11:06
-
-
Save just-jeb/287ccf0daa675f6488a3b4075e08bd15 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "Great Extension", | |
"version": "1.0", | |
"description": "Build an Extension with Angular", | |
"manifest_version": 3, | |
"permissions": [ | |
"activeTab", | |
"webNavigation", | |
"storage", | |
"scripting" | |
], | |
"background": { | |
"service_worker": "background.js", | |
"type": "module" | |
}, | |
"action": { | |
"default_popup": "index.html" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment