From 99457bf19540c60fe617eca620cc28e38295be42 Mon Sep 17 00:00:00 2001 From: Eduardo Pedroni Date: Sun, 23 Sep 2018 10:51:49 +0200 Subject: Initial commit, added code copied from SE --- manifest.json | 9 +++++++++ style.css | 1 + 2 files changed, 10 insertions(+) create mode 100644 manifest.json create mode 100644 style.css diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..a56493c --- /dev/null +++ b/manifest.json @@ -0,0 +1,9 @@ +{ + "manifest_version": 2, + "name": "Stack exchange styles", + "version": "0.1", + "content_scripts": [{ + "matches": ["*://meta.stackexchange.com/*", "*://stackoverflow.com/*"], + "css": ["style.css"] + }] +} diff --git a/style.css b/style.css new file mode 100644 index 0000000..9f1ca57 --- /dev/null +++ b/style.css @@ -0,0 +1 @@ +#hot-network-questions { display: none; } -- cgit v1.2.3