Introduction
Introduction Statistics Contact Development Disclaimer Help
CSS fixes for blender.org, nos.nl and patreon.com - firefox-fix-web - Firefox e…
git clone git://git.codemadness.org/firefox-fix-web
Log
Files
Refs
README
LICENSE
---
commit fba6d30d36b4ca0757a9da9c7f2f556d38191146
parent dbb34e642098e920d06b927d40255f2cb3affe4a
Author: Hiltjo Posthuma <[email protected]>
Date: Fri, 2 Aug 2019 12:43:00 +0200
CSS fixes for blender.org, nos.nl and patreon.com
Diffstat:
M extension/manifest.json | 12 ++++++++++++
A extension/site/blender.css | 3 +++
A extension/site/nos.css | 3 +++
A extension/site/patreon.css | 7 +++++++
4 files changed, 25 insertions(+), 0 deletions(-)
---
diff --git a/extension/manifest.json b/extension/manifest.json
@@ -65,6 +65,18 @@
{
"matches": [ "*://old.reddit.com/*" ],
"css": [ "site/reddit.css" ]
+ },
+ {
+ "matches": [ "*://*.patreon.com/*" ],
+ "css": [ "site/patreon.css" ]
+ },
+ {
+ "matches": [ "*://*.nos.nl/*", "*://nos.nl/*" ],
+ "css": [ "site/nos.css" ]
+ },
+ {
+ "matches": [ "*://*.blender.org/*" ],
+ "css": [ "site/blender.css" ]
}
]
}
diff --git a/extension/site/blender.css b/extension/site/blender.css
@@ -0,0 +1,3 @@
+#isolated {
+ display: none !important;
+}
diff --git a/extension/site/nos.css b/extension/site/nos.css
@@ -0,0 +1,3 @@
+#ccm_notification {
+ display: none !important;
+}
diff --git a/extension/site/patreon.css b/extension/site/patreon.css
@@ -0,0 +1,7 @@
+* {
+ filter: none !important;
+}
+
+div[data-focus-lock-disabled="false"] {
+ display: none !important;
+}
You are viewing proxied material from codemadness.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.