Release v0.1.0

First signed XPI via web-ext unlisted channel. Firefox will now auto-update
installed copies by polling dist/updates.json in this repo.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-22 12:36:41 +00:00
parent eabab39210
commit 8f3b695415
4 changed files with 22 additions and 6 deletions
+1
View File
@@ -1,5 +1,6 @@
node_modules/ node_modules/
.web-ext-artifacts/ .web-ext-artifacts/
.amo-upload-uuid
*.log *.log
.DS_Store .DS_Store
.env .env
Binary file not shown.
+6 -1
View File
@@ -1,7 +1,12 @@
{ {
"addons": { "addons": {
"autotrader-marker@tony.codes": { "autotrader-marker@tony.codes": {
"updates": [] "updates": [
{
"version": "0.1.0",
"update_link": "https://git.nocker.cloud/tony/autotrader-marker/raw/branch/main/dist/autotrader-marker-0.1.0.xpi"
}
]
} }
} }
} }
+15 -5
View File
@@ -3,15 +3,23 @@
"name": "AutoTrader Marker", "name": "AutoTrader Marker",
"version": "0.1.0", "version": "0.1.0",
"description": "Mark AutoTrader listings as 'not wanted' so you can spot the ones you haven't reviewed yet.", "description": "Mark AutoTrader listings as 'not wanted' so you can spot the ones you haven't reviewed yet.",
"permissions": ["storage"], "permissions": [
"storage"
],
"host_permissions": [ "host_permissions": [
"*://*.autotrader.co.uk/*" "*://*.autotrader.co.uk/*"
], ],
"content_scripts": [ "content_scripts": [
{ {
"matches": ["*://*.autotrader.co.uk/*"], "matches": [
"js": ["content.js"], "*://*.autotrader.co.uk/*"
"css": ["content.css"], ],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_idle", "run_at": "document_idle",
"all_frames": false "all_frames": false
} }
@@ -32,7 +40,9 @@
"strict_min_version": "115.0", "strict_min_version": "115.0",
"update_url": "https://git.nocker.cloud/tony/autotrader-marker/raw/branch/main/dist/updates.json", "update_url": "https://git.nocker.cloud/tony/autotrader-marker/raw/branch/main/dist/updates.json",
"data_collection_permissions": { "data_collection_permissions": {
"required": ["none"] "required": [
"none"
]
} }
} }
} }