flowchart TD
A[Chrome API]
subgraph Extensions [Extensions]
B[bot-helper]
C[bot-helper-hmr]
end
subgraph Application [Application]
D[bot-tv-homescreen]
E[bot-vc-controller]
F[bot-lib]
G[bot-ui]
end
A --> B
A --> C
B --> D
B --> E
D --> F
D --> G
E --> F
E --> G
style A fill:#E8F0FE,stroke:#1A73E8,stroke-width:2px;
style B fill:#BBE3F8,stroke:#1A73E8,stroke-width:2px;
style C fill:#BBE3F8,stroke:#1A73E8,stroke-width:2px;
style D fill:#F9EEDD,stroke:#D26D6D,stroke-width:2px;
style E fill:#F9EEDD,stroke:#D26D6D,stroke-width:2px;
style F fill:#F9EEDD,stroke:#D26D6D,stroke-width:2px;
style G fill:#F9EEDD,stroke:#D26D6D,stroke-width:2px;
Comments