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:
@@ -1,5 +1,6 @@
|
||||
node_modules/
|
||||
.web-ext-artifacts/
|
||||
.amo-upload-uuid
|
||||
*.log
|
||||
.DS_Store
|
||||
.env
|
||||
|
||||
Vendored
BIN
Binary file not shown.
Vendored
+6
-1
@@ -1,7 +1,12 @@
|
||||
{
|
||||
"addons": {
|
||||
"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
@@ -3,15 +3,23 @@
|
||||
"name": "AutoTrader Marker",
|
||||
"version": "0.1.0",
|
||||
"description": "Mark AutoTrader listings as 'not wanted' so you can spot the ones you haven't reviewed yet.",
|
||||
"permissions": ["storage"],
|
||||
"permissions": [
|
||||
"storage"
|
||||
],
|
||||
"host_permissions": [
|
||||
"*://*.autotrader.co.uk/*"
|
||||
],
|
||||
"content_scripts": [
|
||||
{
|
||||
"matches": ["*://*.autotrader.co.uk/*"],
|
||||
"js": ["content.js"],
|
||||
"css": ["content.css"],
|
||||
"matches": [
|
||||
"*://*.autotrader.co.uk/*"
|
||||
],
|
||||
"js": [
|
||||
"content.js"
|
||||
],
|
||||
"css": [
|
||||
"content.css"
|
||||
],
|
||||
"run_at": "document_idle",
|
||||
"all_frames": false
|
||||
}
|
||||
@@ -32,7 +40,9 @@
|
||||
"strict_min_version": "115.0",
|
||||
"update_url": "https://git.nocker.cloud/tony/autotrader-marker/raw/branch/main/dist/updates.json",
|
||||
"data_collection_permissions": {
|
||||
"required": ["none"]
|
||||
"required": [
|
||||
"none"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user