Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
13 changes: 13 additions & 0 deletions src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Loading