Bitcoin Forum
April 27, 2024, 11:02:28 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1] 2 »  All
  Print  
Author Topic: Is there any code or extension where I can hide the avatar on the top left page?  (Read 315 times)
blue Snow (OP)
Legendary
*
Offline Offline

Activity: 1484
Merit: 1022


#SWGT CERTIK Audited


View Profile WWW
September 13, 2023, 04:57:53 AM
Merited by DdmrDdmr (4), vapourminer (2), LoyceV (2)
 #1

Actually, it's not annoying me to explore and open the forum, I can hide it by clicking the top right button (-) above, but sometimes I forget to click it when I open the forum in the office, The problem is My partner always curious about what I did on my PC. that's enough to make me uncomfortable when he asks about my avatar forum. Thanks in advance.

1714258948
Hero Member
*
Offline Offline

Posts: 1714258948

View Profile Personal Message (Offline)

Ignore
1714258948
Reply with quote  #2

1714258948
Report to moderator
1714258948
Hero Member
*
Offline Offline

Posts: 1714258948

View Profile Personal Message (Offline)

Ignore
1714258948
Reply with quote  #2

1714258948
Report to moderator
1714258948
Hero Member
*
Offline Offline

Posts: 1714258948

View Profile Personal Message (Offline)

Ignore
1714258948
Reply with quote  #2

1714258948
Report to moderator
"Bitcoin: mining our own business since 2009" -- Pieter Wuille
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
TryNinja
Legendary
*
Offline Offline

Activity: 2814
Merit: 6971



View Profile WWW
September 13, 2023, 04:59:34 AM
Merited by DdmrDdmr (4), vapourminer (2), OmegaStarScream (2), ABCbits (1), dkbit98 (1)
 #2

Almost right... Remove everything and paste this:
Code:
// ==UserScript==
// @name     Hide BitcoinTalk Username and Avatar
// @include   https://bitcointalk.org/*
// @version  1
// @grant    none
// ==/UserScript==

try {
    document.getElementById("smfheader").style.visibility = "hidden";
    document.getElementById("hellomember").style.visibility = "hidden";
    document.getElementsByClassName("avatar")[0].style.visibility = "hidden";
} catch { }

I also added a small line on it to only work on BitcoinTalk.

This removes the username, avatar, and the "Bitcoin Forum" text at the top. You can comment/remove the second line ("hellomember") if you don't want to hide your username.

.
.HUGE.
▄██████████▄▄
▄█████████████████▄
▄█████████████████████▄
▄███████████████████████▄
▄█████████████████████████▄
███████▌██▌▐██▐██▐████▄███
████▐██▐████▌██▌██▌██▌██
█████▀███▀███▀▐██▐██▐█████

▀█████████████████████████▀

▀███████████████████████▀

▀█████████████████████▀

▀█████████████████▀

▀██████████▀▀
█▀▀▀▀











█▄▄▄▄
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.
CASINSPORTSBOOK
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀▀█











▄▄▄▄█
arhipova
Member
**
Offline Offline

Activity: 125
Merit: 16


View Profile
September 13, 2023, 06:53:54 AM
 #3

Almost right... Remove everything and paste this:
Code:
// ==UserScript==
// @name     Hide BitcoinTalk Username and Avatar
// @include   https://bitcointalk.org/*
// @version  1
// @grant    none
// ==/UserScript==

try {
    document.getElementById("smfheader").style.visibility = "hidden";
    document.getElementById("hellomember").style.visibility = "hidden";
    document.getElementsByClassName("avatar")[0].style.visibility = "hidden";
} catch { }

I also added a small line on it to only work on BitcoinTalk.

This removes the username, avatar, and the "Bitcoin Forum" text at the top. You can comment/remove the second line ("hellomember") if you don't want to hide your username.

Where to paste this for it to work ?
TryNinja
Legendary
*
Offline Offline

Activity: 2814
Merit: 6971



View Profile WWW
September 13, 2023, 06:55:22 AM
 #4

Where to paste this for it to work ?
Greasymonkey, Tampermonkey, etc... any browser extension for custom scripts.

https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo
https://addons.mozilla.org/firefox/addon/greasemonkey

.
.HUGE.
▄██████████▄▄
▄█████████████████▄
▄█████████████████████▄
▄███████████████████████▄
▄█████████████████████████▄
███████▌██▌▐██▐██▐████▄███
████▐██▐████▌██▌██▌██▌██
█████▀███▀███▀▐██▐██▐█████

▀█████████████████████████▀

▀███████████████████████▀

▀█████████████████████▀

▀█████████████████▀

▀██████████▀▀
█▀▀▀▀











█▄▄▄▄
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.
CASINSPORTSBOOK
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀▀█











▄▄▄▄█
OmegaStarScream
Staff
Legendary
*
Offline Offline

Activity: 3458
Merit: 6099



View Profile
September 13, 2023, 07:03:50 AM
Merited by DdmrDdmr (4), vapourminer (2), LoyceV (2), ABCbits (2), Halab (2), bitmover (2), suchmoon (1), dkbit98 (1)
 #5

Another way to do it would be to use uBlock Origin. It's an ad blocker but can help you with this as well. You can click on the avatar, right-click, and then simply hit "Block element".

If you want to bring the image back, just go to the extension settings -> My filters and remove the avatar url you blocked before.

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
LoyceV
Legendary
*
Offline Offline

Activity: 3290
Merit: 16558


Thick-Skinned Gang Leader and Golden Feather 2021


View Profile WWW
September 13, 2023, 07:33:59 AM
Merited by OmegaStarScream (2), ABCbits (1)
 #6

I can hide it by clicking the top right button (-) above
I learned something new today!

Another way to do it would be to use uBlock Origin. It's an ad blocker but can help you with this as well. You can click on the avatar, right-click, and then simply hit "Block element".
Before reading your post, and while searching what OP meant, I right-clicked the avatar, and there's an option "ABP Block element" (from Adblock Plus). I didn't know this is possible but it works.
It works not only on top of the page, but on all individual avatars:
Code:
||bitcointalk.org/useravatars/avatar_375981.png

in the office, The problem is My partner always curious about what I did on my PC.
Did you know (hardware) "privacy filters" exist? It installs like a screen protector, and reduces the viewing angle. They're expensive though, almost as much as the monitor itself.

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
OmegaStarScream
Staff
Legendary
*
Offline Offline

Activity: 3458
Merit: 6099



View Profile
September 13, 2023, 09:42:26 AM
Last edit: September 13, 2023, 10:07:07 AM by OmegaStarScream
 #7

-snip-
It works not only on top of the page, but on all individual avatars:
Code:
||bitcointalk.org/useravatars/avatar_375981.png
-snip-

You're right but it should work on the top image only, if he selects the part surrounding the avatar image instead of the image itself (I would imagine that ADB allows you to do that too). Like this:



Code:
bitcointalk.org###upshrinkHeader .bordercolor .windowbg

I tried it and it doesn't look like it has blocked any other parts of the page.

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
yhiaali3
Legendary
*
Offline Offline

Activity: 1680
Merit: 1849


#SWGT CERTIK Audited


View Profile WWW
September 13, 2023, 11:03:59 AM
 #8

There is another method other than the one mentioned by the members above that I sometimes use to hide or show avatars and signatures, but its problem is that it hides all the avatars on the page, not just the avatar on the top left page. This tool can be obtained through this topic:

https://bitcointalk.org/index.php?topic=5178297

It is a Google Chrome extension that has many good options such as hiding/showing avatar, signature, enlarging and reducing font, etc.


tranthidung
Legendary
*
Offline Offline

Activity: 2254
Merit: 3983


Farewell o_e_l_e_o


View Profile WWW
September 13, 2023, 11:25:55 AM
Last edit: September 13, 2023, 11:36:46 AM by tranthidung
 #9

There is another method other than the one mentioned by the members above that I sometimes use to hide or show avatars and signatures, but its problem is that it hides all the avatars on the page, not just the avatar on the top left page. This tool can be obtained through this topic:

https://bitcointalk.org/index.php?topic=5178297

It is a Google Chrome extension that has many good options such as hiding/showing avatar, signature, enlarging and reducing font, etc.


The user collected forum user scripts (like some in a topic quoted by TryNinja) to make it. He was very actively to upgrade that application but unfortunately, it is an abandoned project because the user was banned. As I remember he did not make any appeal for his ban.

I really believe a user like this should be given a second chance than many cases recent months broke rules but were not banned at all. It looks like the user still tried to see whether his account got a second chance as last active day is in March 2023. I believed he left the forum after the ban but today, it seems he is still around.

▄▄███████▄▄
▄██████████████▄
▄██████████████████▄
▄████▀▀▀▀███▀▀▀▀█████▄
▄█████████████▄█▀████▄
███████████▄███████████
██████████▄█▀███████████
██████████▀████████████
▀█████▄█▀█████████████▀
▀████▄▄▄▄███▄▄▄▄████▀
▀██████████████████▀
▀███████████████▀
▀▀███████▀▀
.
 MΞTAWIN  THE FIRST WEB3 CASINO   
.
.. PLAY NOW ..
dkbit98
Legendary
*
Offline Offline

Activity: 2212
Merit: 7073


Cashback 15%


View Profile WWW
September 13, 2023, 07:23:03 PM
 #10

The problem is My partner always curious about what I did on my PC. that's enough to make me uncomfortable when he asks about my avatar forum. Thanks in advance.
Than you better hide everything including address bar because it's clearly written bitcointalk.org there.
uBlock Origin is best extension you can find for hiding just about anything you want, but I don't use it forum.
I think you can also use text-mode only, but then you won't see any images in forum, just text.

.
.HUGE.
▄██████████▄▄
▄█████████████████▄
▄█████████████████████▄
▄███████████████████████▄
▄█████████████████████████▄
███████▌██▌▐██▐██▐████▄███
████▐██▐████▌██▌██▌██▌██
█████▀███▀███▀▐██▐██▐█████

▀█████████████████████████▀

▀███████████████████████▀

▀█████████████████████▀

▀█████████████████▀

▀██████████▀▀
█▀▀▀▀











█▄▄▄▄
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.
CASINSPORTSBOOK
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀▀█











▄▄▄▄█
SamReomo
Hero Member
*****
Offline Offline

Activity: 784
Merit: 672


Top Crypto Casino


View Profile
September 13, 2023, 09:31:15 PM
Last edit: September 13, 2023, 09:41:46 PM by SamReomo
 #11

Hey, I have created an open source extension based on TryNinja's script that is working perfectly on Chrome browser. The source is completely open and anyone can use it without any issue. I could keep that thing closed source but that would not be helpful for anyone.

Here's the link of the source code of the extension: https://file.io/d9uQUNNZVwg5

In order to install the extension, first you need to unzip the files in a folder and then enable developer mode in the extension, and after that click on Load unpacked and then select the folder of the extension, and it will be automatically installed.

Further if you want to make it from the source code then create a file and name it as contents.js and paste the following code in that file:

Code:
// content.js

try {
  document.getElementById("smfheader").style.display = "none";
  document.getElementById("hellomember").style.display = "none";
  const avatars = document.querySelectorAll(".avatar");
  avatars.forEach((avatar) => {
    avatar.style.display = "none";
  });
} catch (error) {
  console.error("An error occurred:", error);
}

And then you will need to create another file and name it as manifest.json and paste the following code:


Code:
 {
  "manifest_version": 3,
  "name": "Hide BitcoinTalk Username and Avatar",
  "version": "1.0",
  "description": "A Chrome extension to hide BitcoinTalk username and avatar",
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": ["*://bitcointalk.org/*"],
      "js": ["content.js"]
    }
  ],
  "action": {
    "default_popup": "popup.html"
  }
}

Once done save those into a folder and load it using the method mentioned above. I hope this will be helpful for the members of the forum. Remember it's based on TryNinja's script so all the credit goes to him!

█████████████████████████
████▐██▄█████████████████
████▐██████▄▄▄███████████
████▐████▄█████▄▄████████
████▐█████▀▀▀▀▀███▄██████
████▐███▀████████████████
████▐█████████▄█████▌████
████▐██▌█████▀██████▌████
████▐██████████▀████▌████
█████▀███▄█████▄███▀█████
███████▀█████████▀███████
██████████▀███▀██████████
█████████████████████████
.
BC.GAME
▄▄░░░▄▀▀▄████████
▄▄▄
██████████████
█████░░▄▄▄▄████████
▄▄▄▄▄▄▄▄▄██▄██████▄▄▄▄████
▄███▄█▄▄██████████▄████▄████
███████████████████████████▀███
▀████▄██▄██▄░░░░▄████████████
▀▀▀█████▄▄▄███████████▀██
███████████████████▀██
███████████████████▄██
▄███████████████████▄██
█████████████████████▀██
██████████████████████▄
.
..CASINO....SPORTS....RACING..
█░░░░░░█░░░░░░█
▀███▀░░▀███▀░░▀███▀
▀░▀░░░░▀░▀░░░░▀░▀
░░░░░░░░░░░░
▀██████████
░░░░░███░░░░
░░█░░░███▄█░░░
░░██▌░░███░▀░░██▌
░█░██░░███░░░█░██
░█▀▀▀█▌░███░░█▀▀▀█▌
▄█▄░░░██▄███▄█▄░░▄██▄
▄███▄
░░░░▀██▄▀


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
blue Snow (OP)
Legendary
*
Offline Offline

Activity: 1484
Merit: 1022


#SWGT CERTIK Audited


View Profile WWW
September 14, 2023, 02:06:03 AM
 #12

Thanks for all the suggestions, I tried all the applications above, and so far an extension of what OmegaStarScream proves is suit for me. It's just a simple download extension and disable it without inserting any code again. So, is there any consequences if if I use it continuously?. I'm a bit paranoid if the application can send my data to the company server, or know the login detil.

Than you better hide everything including address bar because it's clearly written bitcointalk.org there.
How to hide it, such as a (username and name forum) using uBlock Origin?

Upgrade00
Legendary
*
Offline Offline

Activity: 2016
Merit: 2171


Professional Community manager


View Profile WWW
September 14, 2023, 03:36:26 AM
 #13

There is another method other than the one mentioned by the members above that I sometimes use to hide or show avatars and signatures, but its problem is that it hides all the avatars on the page, not just the avatar on the top left page. This tool can be obtained through this topic:
The extension has some other cool features, but if you're only interested in hiring avatars and signatures then there is a forum feature you can use to do that in Look and Layout Preferences section of your profile..
The downside there is turning on avatars turns of that of others and not the one at the top left corner, also turning off signatures does not include forum ads and factoids.

But it still serves pretty well without the need to use extensions or external scripts.

.BEST..CHANGE.███████████████
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
██
███████████████
..BUY/ SELL CRYPTO..
hd49728
Legendary
*
Offline Offline

Activity: 2072
Merit: 1027



View Profile WWW
September 15, 2023, 01:10:33 AM
Merited by vapourminer (1)
 #14

The extension has some other cool features, but if you're only interested in hiring avatars and signatures then there is a forum feature you can use to do that in Look and Layout Preferences section of your profile..
The downside there is turning on avatars turns of that of others and not the one at the top left corner, also turning off signatures does not include forum ads and factoids.

But it still serves pretty well without the need to use extensions or external scripts.
That extension gives different features than default ones of the forum. The default options only allow you to disable avatar and signature in topics, posts but when you choose those options, you can not disable avatar and signature at top of page and profile page.

When you need to hide your username and avatar (at top), you must use that extension or user scripts.

List of Bitcointalk.org Userscripts/ Add-ons / SMF patches

.freebitcoin.       ▄▄▄█▀▀██▄▄▄
   ▄▄██████▄▄█  █▀▀█▄▄
  ███  █▀▀███████▄▄██▀
   ▀▀▀██▄▄█  ████▀▀  ▄██
▄███▄▄  ▀▀▀▀▀▀▀  ▄▄██████
██▀▀█████▄     ▄██▀█ ▀▀██
██▄▄███▀▀██   ███▀ ▄▄  ▀█
███████▄▄███ ███▄▄ ▀▀▄  █
██▀▀████████ █████  █▀▄██
 █▄▄████████ █████   ███
  ▀████  ███ ████▄▄███▀
     ▀▀████   ████▀▀
BITCOIN
DICE
EVENT
BETTING
WIN A LAMBO !

.
            ▄▄▄▄▄▄▄▄▄▄███████████▄▄▄▄▄
▄▄▄▄▄██████████████████████████████████▄▄▄▄
▀██████████████████████████████████████████████▄▄▄
▄▄████▄█████▄████████████████████████████▄█████▄████▄▄
▀████████▀▀▀████████████████████████████████▀▀▀██████████▄
  ▀▀▀████▄▄▄███████████████████████████████▄▄▄██████████
       ▀█████▀  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀  ▀█████▀▀▀▀▀▀▀▀▀▀
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.PLAY NOW.
blue Snow (OP)
Legendary
*
Offline Offline

Activity: 1484
Merit: 1022


#SWGT CERTIK Audited


View Profile WWW
October 05, 2023, 02:24:42 AM
 #15

When you need to hide your username and avatar (at top), you must use that extension or user scripts.

List of Bitcointalk.org Userscripts/ Add-ons / SMF patches

I don't find it, what is the specific link?



I just want to hide my username and Bitcoin forum name above.
while Avatar, I can hide it successfully.

I don't want people know if I were a bitcoiner. I don't want my life to be disturbed when the bitcoin price rises high. I don't want all the people eye on my office to look at me when Bitcoin price create a new record ATH next.

cafter
Full Member
***
Offline Offline

Activity: 448
Merit: 222



View Profile WWW
October 05, 2023, 03:41:19 AM
 #16

Set the brightness to a level that will cause the screen to appear black to anyone who is viewing from an angle. This would prevent your friend from being able to read the text after the avatar and signature have been hidden. Cool
LoyceV
Legendary
*
Offline Offline

Activity: 3290
Merit: 16558


Thick-Skinned Gang Leader and Golden Feather 2021


View Profile WWW
October 05, 2023, 07:24:39 AM
 #17

Set the brightness to a level that will cause the screen to appear black to anyone who is viewing from an angle.
On a decent quality screen, this isn't possible. And it's terrible for yourself too.

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
hd49728
Legendary
*
Offline Offline

Activity: 2072
Merit: 1027



View Profile WWW
October 05, 2023, 10:57:29 AM
 #18

Set the brightness to a level that will cause the screen to appear black to anyone who is viewing from an angle.
On a decent quality screen, this isn't possible. And it's terrible for yourself too.
I would like to stay at home, to secure my privacy and protect my eyesight than go to public places and reduce the screen light that is harmful for my eyesight.

I don't find it, what is the specific link?



I just want to hide my username and Bitcoin forum name above.
while Avatar, I can hide it successfully.
This one coded by suchmoon.
Hide my name. I did not use it but I believe it suits your demand.
Looks like this:

Loading... ------ Loading...
Edited 2020-11-30 to fix broken images

.freebitcoin.       ▄▄▄█▀▀██▄▄▄
   ▄▄██████▄▄█  █▀▀█▄▄
  ███  █▀▀███████▄▄██▀
   ▀▀▀██▄▄█  ████▀▀  ▄██
▄███▄▄  ▀▀▀▀▀▀▀  ▄▄██████
██▀▀█████▄     ▄██▀█ ▀▀██
██▄▄███▀▀██   ███▀ ▄▄  ▀█
███████▄▄███ ███▄▄ ▀▀▄  █
██▀▀████████ █████  █▀▄██
 █▄▄████████ █████   ███
  ▀████  ███ ████▄▄███▀
     ▀▀████   ████▀▀
BITCOIN
DICE
EVENT
BETTING
WIN A LAMBO !

.
            ▄▄▄▄▄▄▄▄▄▄███████████▄▄▄▄▄
▄▄▄▄▄██████████████████████████████████▄▄▄▄
▀██████████████████████████████████████████████▄▄▄
▄▄████▄█████▄████████████████████████████▄█████▄████▄▄
▀████████▀▀▀████████████████████████████████▀▀▀██████████▄
  ▀▀▀████▄▄▄███████████████████████████████▄▄▄██████████
       ▀█████▀  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀  ▀█████▀▀▀▀▀▀▀▀▀▀
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.PLAY NOW.
SFR10
Legendary
*
Offline Offline

Activity: 2982
Merit: 3409


Crypto Swap Exchange


View Profile WWW
October 05, 2023, 11:30:36 AM
 #19

@blue Snow
Regarding dkbit98's comment about the address bar, if you use Chrome in full-screen mode [F11 on Windows], it automatically hides the address bar [the only downside is that it'd hide the tab bar as well].

Set the brightness to a level that will cause the screen to appear black to anyone who is viewing from an angle. This would prevent your friend from being able to read the text after the avatar and signature have been hidden. Cool
This would work wonders on a TN panel, but not so much on VA and IPS panels.
- IMO, the privacy screen/filter that LoyceV mentioned "here" is a better alternative solution... You can even detach some of them easily and transfer it to other monitors [the only downside is that most of them are made for smaller screens (21 to 27 inches) that have 16:9 aspect ratio].

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
cafter
Full Member
***
Offline Offline

Activity: 448
Merit: 222



View Profile WWW
October 05, 2023, 05:55:50 PM
 #20

Please anyone tell me about this I still doesn't understood the meaning of this (-)
I think you are talking about this button:    
but that seems anything different from this, because LoyceV said he/she learned anything new from this.
Pages: [1] 2 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!