-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
Website Code Modification and Outreach Feature
As a user, I want to be able to select, edit, and propose changes to the code of websites I visit using a Chrome extension, and easily suggest these changes to the website owner.
Acceptance Criteria
- User can select the specific part of the website code to edit.
- User can prompt the extension to use GPT to rewrite selected code.
- Edited code can be previewed by the user within the extension.
- User can submit the proposed code edits to the website owner through the extension.
- Extension includes a predefined email template for outreach to the website owner.
- User can customize the email template before submission.
- Extension maintains a history of edits and submissions for the user.
- User can access a guide on best practices for communicating with website owners.
sequenceDiagram
participant User
participant Extension
participant GPT_API
participant Email_Client
User->>Extension: Select code
Extension->>User: Show selected code
User->>GPT_API: Request code rewrite
GPT_API-->>User: Suggest rewritten code
User->>Extension: Accept rewritten code
Extension->>Email_Client: Prepare email with edits
User->>Email_Client: Edit & send email
Email_Client-->>Website_Owner: Receive proposed edits