diff --git a/.gitignore b/.gitignore index 22a461a..6e1e240 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ node_modules/ .web-ext-artifacts/ +.amo-upload-uuid *.log .DS_Store .env diff --git a/dist/autotrader-marker-0.1.0.xpi b/dist/autotrader-marker-0.1.0.xpi new file mode 100644 index 0000000..530e551 Binary files /dev/null and b/dist/autotrader-marker-0.1.0.xpi differ diff --git a/dist/updates.json b/dist/updates.json index c448930..6a0672d 100644 --- a/dist/updates.json +++ b/dist/updates.json @@ -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" + } + ] } } } diff --git a/manifest.json b/manifest.json index a0baf01..958b433 100644 --- a/manifest.json +++ b/manifest.json @@ -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" + ] } } }