diff --git a/css/hide-distractions.css b/css/hide-distractions.css new file mode 100644 index 0000000..2a3a937 --- /dev/null +++ b/css/hide-distractions.css @@ -0,0 +1,4 @@ +#hot-network-questions, +.s-sidebarwidget { + display: none; +} diff --git a/css/hide-hnq.css b/css/hide-hnq.css deleted file mode 100644 index a51b112..0000000 --- a/css/hide-hnq.css +++ /dev/null @@ -1,3 +0,0 @@ -#hot-network-questions { - display: none; -} diff --git a/manifest.json b/manifest.json index 211b83d..94350ef 100644 --- a/manifest.json +++ b/manifest.json @@ -1,8 +1,8 @@ { "manifest_version": 2, "name": "SO Focused", - "version": "1.1", - "description": "Hides the \"Hot Network Questions\" sidebar on StackOverflow and related sites.", + "version": "1.2", + "description": "Hides distracting sidebar elements on StackOverflow and related sites.", "author": "Rob Cowsill", "homepage_url": "https://github.com/rcowsill/SO-Focused", "icons": { @@ -20,7 +20,7 @@ ], "run_at": "document_start", "css": [ - "css/hide-hnq.css" + "css/hide-distractions.css" ] } ]