From 4f63dd7786626c3b3b621f2cb04ab390dc31a296 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 28 Jan 2026 11:09:47 +0000 Subject: [PATCH 1/3] Initial plan From 5ad3583ea3db04392b2067ba8bf3249466e11af9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 28 Jan 2026 11:11:52 +0000 Subject: [PATCH 2/3] Fix manifest validation error by removing invalid data_collection_permissions field Co-authored-by: scolastico <26954501+scolastico@users.noreply.github.com> --- src/manifest.json | 1 - 1 file changed, 1 deletion(-) diff --git a/src/manifest.json b/src/manifest.json index 699f2dd..445b459 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -11,7 +11,6 @@ "browser_specific_settings": { "gecko": { "id": "dom-time-machine@scolasti.co", - "data_collection_permissions": false, "update_url": "https://github.com/scolastico-dev/dom-time-machine/releases/latest/download/dom-time-machine.xpi" } }, From c3665f9d53800dc0508ef549df42d834a8bd192c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 28 Jan 2026 11:15:32 +0000 Subject: [PATCH 3/3] Update PR CI to replace IN-DEV version with 0.0.0 Co-authored-by: scolastico <26954501+scolastico@users.noreply.github.com> --- .github/workflows/pr-build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/pr-build.yml b/.github/workflows/pr-build.yml index d449aaa..ca4be8b 100644 --- a/.github/workflows/pr-build.yml +++ b/.github/workflows/pr-build.yml @@ -15,6 +15,11 @@ jobs: - name: Checkout code uses: actions/checkout@v4 + - name: Update manifest version + run: | + jq '.version = "0.0.0"' src/manifest.json > src/manifest.json.tmp + mv src/manifest.json.tmp src/manifest.json + - name: Get version from manifest id: get_version run: |