tweak: savepoint
This commit is contained in:
parent
0ba87b8cdc
commit
7e23aad95f
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#ifndef STYLE
|
||||
#define STYLE
|
||||
|
||||
#define STYLE_N 6252 + 100
|
||||
#define STYLE_N 6073 + 100
|
||||
|
||||
void read_style_js(char* string);
|
||||
|
||||
|
|
|
@ -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);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user