add site theverge.com - firefox-fix-web - Firefox extension: fix web | |
git clone git://git.codemadness.org/firefox-fix-web | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit b24039ed5c0a80c594de189fdae55c17fb2f8232 | |
parent 230e5dbe064f1c274a8275a2b526545eff548559 | |
Author: Hiltjo Posthuma <[email protected]> | |
Date: Mon, 8 Oct 2018 19:29:27 +0200 | |
add site theverge.com | |
it has a half-height screen privacy "consent"/rape screen | |
Diffstat: | |
M extension/manifest.json | 12 ++++++++---- | |
A extension/site/theverge.css | 3 +++ | |
2 files changed, 11 insertions(+), 4 deletions(-) | |
--- | |
diff --git a/extension/manifest.json b/extension/manifest.json | |
@@ -17,6 +17,10 @@ | |
"css": [ "global/anim.css" ] | |
}, | |
{ | |
+ "matches": [ "*://www.buienradar.nl/*" ], | |
+ "css": [ "site/buienradar.css" ] | |
+ }, | |
+ { | |
"matches": [ "*://www.gamekings.tv/*" ], | |
"js": [ "site/gamekings.js" ], | |
"css": [ "site/gamekings.css" ] | |
@@ -26,6 +30,10 @@ | |
"js": [ "site/kudtkoekiewet.js" ] | |
}, | |
{ | |
+ "matches": [ "*://www.theverge.com/*" ], | |
+ "css": [ "site/theverge.css" ] | |
+ }, | |
+ { | |
"matches": [ "*://twitter.com/*" ], | |
"css": [ "site/twitter.css" ] | |
}, | |
@@ -34,10 +42,6 @@ | |
"js": [ "site/tweakers.js" ] | |
}, | |
{ | |
- "matches": [ "*://www.buienradar.nl/*" ], | |
- "css": [ "site/buienradar.css" ] | |
- }, | |
- { | |
"matches": [ "*://www.xs4all.nl/*" ], | |
"css": [ "site/xs4all.css" ] | |
}, | |
diff --git a/extension/site/theverge.css b/extension/site/theverge.css | |
@@ -0,0 +1,3 @@ | |
+#privacy-consent { | |
+ display: none !important; | |
+} |