mirror of
https://github.com/pchuan98/codex.git
synced 2026-07-01 00:31:56 +08:00
487716ae74
### Summary Allowlist chrome extension in tool_suggest tool ### Screenshot Allowlist chrome extension in tool_suggest tool <img width="808" height="309" alt="chrome_internal" src="https://github.com/user-attachments/assets/ed769d77-b635-4a40-a0c5-fbff05af3036" />
34 lines
937 B
Rust
34 lines
937 B
Rust
pub mod installed_marketplaces;
|
|
pub mod loader;
|
|
pub mod manifest;
|
|
pub mod marketplace;
|
|
pub mod marketplace_add;
|
|
pub mod marketplace_remove;
|
|
pub mod marketplace_upgrade;
|
|
pub mod remote;
|
|
pub mod remote_bundle;
|
|
pub mod remote_legacy;
|
|
pub mod startup_sync;
|
|
pub mod store;
|
|
pub mod toggles;
|
|
|
|
pub const OPENAI_CURATED_MARKETPLACE_NAME: &str = "openai-curated";
|
|
pub const OPENAI_BUNDLED_MARKETPLACE_NAME: &str = "openai-bundled";
|
|
|
|
pub const TOOL_SUGGEST_DISCOVERABLE_PLUGIN_ALLOWLIST: &[&str] = &[
|
|
"github@openai-curated",
|
|
"notion@openai-curated",
|
|
"slack@openai-curated",
|
|
"gmail@openai-curated",
|
|
"google-calendar@openai-curated",
|
|
"google-drive@openai-curated",
|
|
"teams@openai-curated",
|
|
"sharepoint@openai-curated",
|
|
"outlook-email@openai-curated",
|
|
"outlook-calendar@openai-curated",
|
|
"linear@openai-curated",
|
|
"figma@openai-curated",
|
|
"chrome@openai-bundled",
|
|
"computer-use@openai-bundled",
|
|
];
|