Skip to content

Commit 42f1725

Browse files
authored
Clarify that the process that does extension native messaging for ChatGPT Atlas is another process (#973)
This adds extension_native_messaging_process_bundle_identifier and extension_native_messaging_process_code_signing_identifier as optional keys in the "Mac" "platform_specific_information" object.
1 parent f58784a commit 42f1725

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

quirks/schemas/web-browser-extension-distribution-information-schema.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,12 @@
5656
"code_signing_team_identifier": {
5757
"type": "string"
5858
},
59+
"extension_native_messaging_process_bundle_identifier": {
60+
"type": "string"
61+
},
62+
"extension_native_messaging_process_code_signing_identifier": {
63+
"type": "string"
64+
},
5965
"extensions_install_path_relative_to_user_library_directory": {
6066
"type": "string"
6167
}

quirks/web-browser-extension-distribution-information.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -982,7 +982,9 @@
982982
"Mac": {
983983
"bundle_identifier": "com.openai.atlas",
984984
"code_signing_identifier": "com.openai.atlas",
985-
"code_signing_team_identifier": "2DC432GLL2"
985+
"code_signing_team_identifier": "2DC432GLL2",
986+
"extension_native_messaging_process_bundle_identifier": "com.openai.atlas.web",
987+
"extension_native_messaging_process_code_signing_identifier": "com.openai.atlas.web"
986988
}
987989
},
988990
"supported_store_identifiers": [

0 commit comments

Comments
 (0)