mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-03-26 13:19:49 +07:00
* Partial fixes for sample list generator A number of fixes for the sample list generator: - Removes a comment from one of our manifest files, as we don't currently support JSONC. - Ignores the `node_modules` folder since we have recently added some AI samples with a build step. - Adds the `aiOriginTrial` API to the list of recognised APIs. - Updates `extension-apis.json` with the latest data from the `chrome-types` package. Updating recognised extension APIs still requires access to a non-existent storage bucket, so this does not fully fix the process. * Fix linter issue
16 lines
576 B
JSON
Executable File
16 lines
576 B
JSON
Executable File
{
|
|
"name": "Identity API Sample",
|
|
"version": "4.0",
|
|
"manifest_version": 3,
|
|
"key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCDJB6ZGcGxtlr/34s+TKgi84QiP7DMekqOjSUS2ubmbhchlM6CN9gYdGQ1aBI3TBXG3YaAu+XyutFA8M8NLLWc4OOGByWaGV11DP6p67g8a+Ids/gX6cNSRnRHiDZXAd44ATxoN4OZjZJk9iQ26RIUjwX07bzntlI+frwwKCk4WQIDAQAB",
|
|
"action": {},
|
|
"background": {
|
|
"service_worker": "main.js"
|
|
},
|
|
"permissions": ["identity", "identity.email"],
|
|
"oauth2": {
|
|
"client_id": "497291774654.apps.googleusercontent.com",
|
|
"scopes": ["https://www.googleapis.com/auth/userinfo.profile"]
|
|
}
|
|
}
|