Replies: 1 comment
-
Below I have left all details: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello. Please, can anyone help me ? I don't know to make scripts or to edit css. I am new to this kind of stuff.
I often visit and use a specific website (I am not the owner of the website).
Here exists an element that has in css "visibility" "visible" and "hidden"
element.style: "visibility: visible;" and "visibility: hidden;"
meaning it is set up to appear on the website, but after a small period of time it dissapears, than reapears again and dissapears so on.
I want a script that can make this element to be permanent on the website. In css it would be something like:"display: block;" ?
I have tried this but no result:
// ==UserScript==
// @name Permanent Element
// @namespace http://tampermonkey.net/
// @Version 0.1
// @description try to take over the world!
// @author You
// @match https://www.specificdomain.com/*
// @ICON https://www.google.com/s2/favicons?sz=64&domain=specificdomain.com
// @grant none
// @require https://code.jquery.com/jquery-3.6.0.min.js
// ==/UserScript==
(function() {
'use strict';
$('.interface-cashField_subComponent').attr('style','display: block');
})();
Beta Was this translation helpful? Give feedback.
All reactions