From 0e05e78fc0e1195f14a3cf1d4c5326f0edbec658 Mon Sep 17 00:00:00 2001 From: Rob Cowsill <42620235+rcowsill@users.noreply.github.com> Date: Sun, 19 Sep 2021 22:31:26 +0100 Subject: [PATCH] Update manifest * Arranged match list by importance * Reformatted JSON to match XPI content * Bump version number for release --- manifest.json | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/manifest.json b/manifest.json index 41197fb..211b83d 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "SO Focused", - "version": "1.0", + "version": "1.1", "description": "Hides the \"Hot Network Questions\" sidebar on StackOverflow and related sites.", "author": "Rob Cowsill", "homepage_url": "https://github.com/rcowsill/SO-Focused", @@ -11,15 +11,17 @@ "content_scripts": [ { "matches": [ - "*://*.askubuntu.com/*", - "*://*.serverfault.com/*", - "*://*.stackapps.com/*", - "*://*.stackexchange.com/*", "*://*.stackoverflow.com/*", - "*://*.superuser.com/*" + "*://*.stackexchange.com/*", + "*://*.superuser.com/*", + "*://*.serverfault.com/*", + "*://*.askubuntu.com/*", + "*://*.stackapps.com/*" ], "run_at": "document_start", - "css": ["css/hide-hnq.css"] + "css": [ + "css/hide-hnq.css" + ] } ] -} +} \ No newline at end of file