dwmkerr / chatgpt-diagrams-extension

A Chrome browser extension that renders diagrams in the ChatGPT website inline.
MIT License
13 stars 3 forks source link

bug: flowchart does not render #29

Closed dwmkerr closed 1 year ago

dwmkerr commented 1 year ago

The following content does not render:

Prompt:

Create a diagram using mermaid.js that shows the architecture of a browser extension

Code:

graph TD;
  A[Browser] -->|1. Loads Extension| B[Extension Background];
  B -->|2. Communicates with Content Scripts| C[Content Scripts];
  B -->|3. Interacts with Browser APIs| D[Browser APIs];
  C -->|4. Manipulates Web Pages| E[Web Pages];
  D -->|5. Accesses and Modifies Browser Features| E;
  E -->|6. Sends Data and Events to Content Scripts| C;
  C -->|7. Sends Data and Events to Background| B;
  B -->|8. Updates UI and Listens for User Actions| F[Extension UI];
  F -->|9. Communicates with Background| B;

Screenshot:

image

Interestingly, it does seem like content might be there, just not visible

dwmkerr commented 1 year ago

Seemed to be a packaging issue w/ the old extension