feat(extension): content script parser + session manager (Week 2 AC 2+3)#8
Merged
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implements page metadata collection and session lifecycle management in the extension.
What's included
AC 2 — Content Script
url,title,metaDescription,headings(h1–h3) from active pagepopstate,hashchange)PAGE_METADATAto service worker; ignored if no active sessionAC 3 — Session Manager
startSession/stopSessionwithchrome.storage.localpersistencestartedAt + totalActiveMs— safe after SW restartSESSION_START,SESSION_STOP,SESSION_GET_STATEpendingEventsaccumulation in storage (consumed by AC 5)Gaps identified (documented in plan, resolved in AC 4/5)
SESSION_PAUSE/SESSION_RESUMEmissing → added in AC 4POST /api/v1/sessionsendpoint → added in AC 5tags: ["note"]Event.contentformat defined:[metaDescription, ...headings].join(" | ")Closes Week 2 AC 2, AC 3