Created
April 9, 2018 17:56
-
-
Save saiumesh535/9d43635d1028c6c40d08fa519ee3d2cf to your computer and use it in GitHub Desktop.
Angular extension manifest file
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
{ | |
"manifest_version": 2, | |
"name": "Extension third party login", | |
"description": "Let's do some login", | |
"version": "1.0", | |
"browser_action": { | |
"default_icon": "favicon.ico", | |
"default_popup": "index.html" | |
}, | |
"permissions": [ | |
"identity" | |
], | |
"background": { | |
"page": "index.html", | |
"persistent": true | |
}, | |
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", | |
"web_accessible_resources": [ | |
"assets/css/*", | |
"assets/js/*", | |
"assets/fonts/*" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment