As a user, I want to integrate GPT with a Chrome extension to automatically rewrite the parts of the websites that I don’t like, and potentially submit these changes to the website owner for consideration.
Acceptance Criteria
[ ] User can select text or elements on the website they want to change.
[ ] Chrome extension can interpret and extract HTML/CSS/JS code corresponding to the user's selection.
[ ] User can input their preferred changes via a prompted interface.
[ ] GPT is prompted by the user's input to suggest alternative text/codes.
[ ] The extension displays a preview of changes before any confirmation by the user.
[ ] User can submit the suggested changes to the website owner directly from the extension.
[ ] The extension includes error handling for when GPT suggestions fail or are not possible.
[ ] User preferences for changes are saved for future browsing sessions.
sequenceDiagram
participant User
participant Extension
participant GPT
participant Website
User->>Extension: Select text/element
Extension->>User: Prompt user for desired changes
User->>GPT: Input changes
GPT-->>Extension: Suggest alternative code
Extension->>User: Display preview of changes
User->>Extension: Confirm/submit changes
Extension->>Website: Send suggested changes to website owner
GPT Integration for Website Customization
As a user, I want to integrate GPT with a Chrome extension to automatically rewrite the parts of the websites that I don’t like, and potentially submit these changes to the website owner for consideration.
Acceptance Criteria