I have already go through this document
https://cloud.google.com/identity-platform/docs/web/chrome-extension
but , i didn't figure out how i can add extension link to the authorized domain .
here is my manifest.json
{
"manifest_version": 2,
"name": "AppName",
"description": "This official AppName Chrome Extension",
"version": "1.0",
"browser_action": {
"default_popup": "index.html",
"default_title": "AppName"
},
"icons": {
"16": "icon1.png",
"48": "icon1.png",
"128": "icon1.png"
},
"content_security_policy": "script-src 'self' 'sha256-kFv4LNofhwVLOIwHReYGCRy3S9dD6iHKsyMST3uabnU='; object-src 'self'",
"permissions": [
"storage"
]
}
I already prefer https://stackoverflow.com/a/44987478/12318562 but this doesn't help me more .