-
Notifications
You must be signed in to change notification settings - Fork 459
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce new data, web-browser-extension-distribution-information.js…
…on, which expresses relationships between web browsers and web browser extension storefronts (#818) See the changes to the project README for an explanation of the data. Although some attempt is made at extensibility for various platforms, the file currently is largely designed to cater to developers of password manager apps for macOS. Patches welcome, as always!
- Loading branch information
Showing
3 changed files
with
419 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
92 changes: 92 additions & 0 deletions
92
quirks/schemas/web-browser-extension-distribution-information-schema.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft/2020-12/schema", | ||
"type": "object", | ||
"properties": { | ||
"extension_storefronts": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"name": { | ||
"type": "string" | ||
}, | ||
"url": { | ||
"type": "string" | ||
}, | ||
"identifier": { | ||
"type": "integer" | ||
} | ||
}, | ||
"required": [ | ||
"name", | ||
"url", | ||
"identifier" | ||
] | ||
} | ||
}, | ||
"web_browsers": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"long_name": { | ||
"type": "string" | ||
}, | ||
"short_name": { | ||
"type": "string" | ||
}, | ||
"supported_platforms": { | ||
"type": "array", | ||
"items": { | ||
"type": "string" | ||
} | ||
}, | ||
"platform_specific_information": { | ||
"type": "object", | ||
"properties": { | ||
"Mac": { | ||
"type": "object", | ||
"properties": { | ||
"bundle_identifier": { | ||
"type": "string" | ||
}, | ||
"code_signing_identifier": { | ||
"type": "string" | ||
}, | ||
"code_signing_team_identifier": { | ||
"type": "string" | ||
}, | ||
"extensions_install_path_relative_to_user_library_directory": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"bundle_identifier", | ||
"code_signing_identifier", | ||
"code_signing_team_identifier" | ||
] | ||
} | ||
} | ||
}, | ||
"supported_store_identifiers": { | ||
"type": "array", | ||
"items": { | ||
"type": "integer" | ||
} | ||
} | ||
}, | ||
"required": [ | ||
"long_name", | ||
"short_name", | ||
"supported_platforms", | ||
"platform_specific_information", | ||
"supported_store_identifiers" | ||
] | ||
} | ||
} | ||
}, | ||
"required": [ | ||
"extension_storefronts", | ||
"web_browsers" | ||
] | ||
} |
Oops, something went wrong.