aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNunoSempere <nuno.sempere@protonmail.com>2023-11-09 10:13:11 +0000
committerNunoSempere <nuno.sempere@protonmail.com>2023-11-09 10:13:11 +0000
commit7e23aad95fda2732dd8777207cb213705bbbac9e (patch)
treee5583c5899f6d9794abc1a97b89c3c27d5b596a5
parent0ba87b8cdc62d89e6ac10273dd43617ea80f062a (diff)
tweak: savepoint
-rw-r--r--plugins/style/style.c2
-rw-r--r--plugins/style/style.h2
-rw-r--r--plugins/style/style.js11
-rwxr-xr-xrosebin43280 -> 43280 bytes
4 files changed, 6 insertions, 9 deletions
diff --git a/plugins/style/style.c b/plugins/style/style.c
index 7429ff4..88c82a7 100644
--- a/plugins/style/style.c
+++ b/plugins/style/style.c
@@ -1,7 +1,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#define STYLE_N 6252 + 100
+#define STYLE_N 6073 + 100
void read_style_js(char* string)
{
diff --git a/plugins/style/style.h b/plugins/style/style.h
index 40ebc7a..18175c4 100644
--- a/plugins/style/style.h
+++ b/plugins/style/style.h
@@ -1,7 +1,7 @@
#ifndef STYLE
#define STYLE
-#define STYLE_N 6252 + 100
+#define STYLE_N 6073 + 100
void read_style_js(char* string);
diff --git a/plugins/style/style.js b/plugins/style/style.js
index 4c17f17..9457a7b 100644
--- a/plugins/style/style.js
+++ b/plugins/style/style.js
@@ -95,13 +95,10 @@ if (document.domain == "twitter.com") {
.querySelectorAll('[data-testid="videoPlayer"]')
.forEach(function (videoPlayer) {
var grandparentElement = videoPlayer.parentElement.parentElement.parentElement.parentElement.parentElement.parentElement;
- // grandparentElement.style.display = "none";
- grandparentElement.innerHtml = "none";
- // Make sure not to replace the content if it's already been replaced
- if (grandparentElement.getAttribute('data-content-replaced') !== 'true') {
- grandparentElement.textContent = ' [twitter video]';
- grandparentElement.setAttribute('data-content-replaced', 'true');
- }
+ var newTextElement = document.createElement('div');
+ newTextElement.textContent = '[twitter video]';
+ newTextElement.style.borderWidth = '0px !important';
+ grandparentElement.replaceWith(newTextElement);
});
}
diff --git a/rose b/rose
index 7bc2581..9e1d36d 100755
--- a/rose
+++ b/rose
Binary files differ