[ANDROID] [MOBILE] FACEBOOK re-enable right-click text copy

freshhh

Active Member
Hi,

Could you please add an option to re-enable right-click so we can select and copy-paste text from Facebook in the mobile version of AdGuard because when I try to add such extension it doesn't work with the mobile version...

I've tried also to add manually some rules but with no luck...

Thanks in advance for your help !
 

Blaz

Moderator & Translator
Staff member
Moderator
Added to Annoyances filter, available in about 3 hours:

Code:
m.facebook.com#$#html.unselectable * { -webkit-user-select: text !important; }
 

freshhh

Active Member
Added to Annoyances filter, available in about 3 hours:

Code:
m.facebook.com#$#html.unselectable * { -webkit-user-select: text !important; }
Unfortunately it seems that it doesnt work...
I've tried also to add it manually in my user rules but it does not fix the issue...

Could you please check again please?

Thanks
 

Blaz

Moderator & Translator
Staff member
Moderator
Please try this rule, FF has different command:

Code:
m.facebook.com#$#html.unselectable * { -webkit-user-select: text !important; -moz-user-select: text !important; }
 

freshhh

Active Member
Unfortunately the alternative rule doesn't work as well for Firefox. Do you think you can fix it?

Note : The original rule is working for Brave browser (Chrome) but I'm not a fan of Chrome engine browsers...
 

Blaz

Moderator & Translator
Staff member
Moderator
Please try these two rules in combination:
Code:
m.facebook.com#$#* { -moz-user-select: text !important; }
m.facebook.com#$#.touch a[href*="story.php"] { position: relative !important; }
 

freshhh

Active Member
Please try these two rules in combination:
Code:
m.facebook.com#$#* { -moz-user-select: text !important; }
m.facebook.com#$#.touch a[href*="story.php"] { position: relative !important; }
I added those two rules and removed others ones but unfortunately it's still not working in Firefox beta...
 

Blaz

Moderator & Translator
Staff member
Moderator
I only get the old interface, please post your usersgent.
 

freshhh

Active Member
Mozilla/5.0 (Linux; Android 12; M2102J20SG Build/SKQ1.211006.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/101.0.4951.41 Mobile Safari/537.36 GSA/13.17.10.23.arm64
 

Blaz

Moderator & Translator
Staff member
Moderator
When you try to select the text, is it auto-clicking the article? I can select the text when I check with that user agent on Desktop, FireFox is sadly not working on my Android correctly.
@Alex302 can you check, thank you.
 

freshhh

Active Member
Sorry after check-in again today those two rules are working for Firefox but not if the Chrome rule is enabled as well and if I use only the two Firefox rules then it doesnt work anymore in Chrome / Brave.

Any chance to find a universal way to enable copy-paste with rules for those two major browsers engine at the same so it can be used for everyone by default ?

If not with rules with an extension?

Thanks a lot for your deep investigation, I appreciate it!
 

Blaz

Moderator & Translator
Staff member
Moderator
Please try these rules (remove previous manual rules):
Code:
m.facebook.com#@$#html.unselectable * { -webkit-user-select: text !important; }
m.facebook.com#$#div { -moz-user-select: text !important; -webkit-user-select: text !important; }
m.facebook.com#$#.touch a[href*="story.php"] { position: relative !important; }
First rule is disabling the rule in Annoyances filter.
 

freshhh

Active Member
Thanks a lot. With those three rules it works now perfectly at the same time for Firefox and Brave (Chrome). Good job!
 
Top