-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
Chrome Extension Settings for Website Customization
As a user, I want to customize specific elements of websites I visit by using a Chrome Extension. This extension should enable me to select, modify, and propose changes directly to the website owner.
Acceptance Criteria
- User can select elements on a website to be modified.
- User can prompt GPT to suggest modifications for the selected elements.
- User can view the proposed changes in a side panel within the extension.
- User can edit the GPT-suggested modifications before finalizing.
- User can save the final version of suggested changes within the extension.
- User can submit suggested changes to the website owner via an automated email or form.
- User can manage a history of all suggested changes for different websites.
sequenceDiagram
participant User
participant Extension
participant GPT
participant Website
User->>Extension: Select website elements to modify
Extension->>User: Display selected elements
User->>Extension: Prompt GPT for rewrites
Extension->>GPT: Submit elements for suggestions
GPT-->>Extension: Provide modifications
Extension->>User: Show suggested changes
User->>Extension: Confirm/Edit suggestions
Extension->>User: Save finalized modifications
User->>Extension: Submit changes to Website Owner