diff --git a/.github/workflows/release-build.yml b/.github/workflows/release-build.yml index dd7d52c..afc22b7 100644 --- a/.github/workflows/release-build.yml +++ b/.github/workflows/release-build.yml @@ -34,9 +34,12 @@ jobs: cd src VERSION="${{ steps.get_tag.outputs.version }}" zip -r ../dom-time-machine-v${VERSION}.zip . + zip -r ../dom-time-machine.xpi . cd .. - name: Upload release asset uses: softprops/action-gh-release@v2 with: - files: dom-time-machine-v${{ steps.get_tag.outputs.version }}.zip + files: | + dom-time-machine-v${{ steps.get_tag.outputs.version }}.zip + dom-time-machine.xpi diff --git a/src/manifest.json b/src/manifest.json index 1879dee..699f2dd 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -2,6 +2,19 @@ "manifest_version": 3, "name": "DOM Time Machine Pro", "version": "IN-DEV", + "description": "A powerful developer tool designed to capture a high-fidelity, chronological record of a webpage's DOM state. Capture, rewind, and inspect the code of a page at any point in time.", + "author": "scolasti.co", + "homepage_url": "https://github.com/scolastico-dev/dom-time-machine", + "icons": { + "32": "icons/gray.png" + }, + "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" + } + }, "permissions": [ "storage", "unlimitedStorage",