Author Topic: How to hide sponsored Twitter tweets (in FireFox)  (Read 4596 times)

Virmir

  • Chaotic Neutral Cartoon Gray Fox Mage
  • Administrator
  • Mage of Caerreyn, Level 4
  • *****
  • Posts: 2249
  • These sorts of things happen.
    • View Profile
    • virmir.com
on: April 07, 2015, 10:19:49 PM
Instructions for FireFox users:

Browse to your profiles directory.  If you are using Windows 7, it will be located similar to the following (replacing Virmir with your username):

C:\Users\Virmir\AppData\Roaming\Mozilla\Firefox\Profiles\

(Or, if you use Pale Moon like me, C:\Users\Virmir\AppData\Roaming\Moonchild Productions\Pale Moon\Profiles)

You'll probably only have one folder in here, unless you mess around with profiles.  If you have more than one, the one with the most recent modified date is probably your current one and the one you want. 



In here, create the directory "chrome" if it doesn't already exist.  If it already exists, that's fine.



Inside the chrome directory, create a new text file, then rename it "userContent.css".  (Make sure you have extensions visible in windows, so you don't accidentally name it userContent.css.txt or something stupid instead.) If the file already exists, that's fine.



Open userContent.css in Notepad or your text editor of choice and pop in the following code.

Code: [Select]
@-moz-document domain(twitter.com) {
.is-promoted {
display: none !important;
}
}

Restart your browser and promoted tweets should no longer be visible!


Instructions for Chrome and IE users:

I dunno, just use FireFox or something.  Trees.


Remember, kids, death to all solicitors.  The halls shall run crimson with the blood of the church of the political door-to-door vacuum cleaner salesman telemarketer society.  No mercy!  No relent!


[fox] Virmir


PrincessHotcakes

  • Prettiest Princess
  • Moderator
  • Enchanted Weapons Expert
  • ****
  • Posts: 1316
  • I gurl
    • View Profile
Reply #1 on: April 08, 2015, 10:00:36 AM
I never see sponsored tweets in my Firefox at all... Strange that you do

🏳️‍⚧️Princess is a contagious condition🏳️‍⚧️
She/her pronouns please ❤️


Virmir

  • Chaotic Neutral Cartoon Gray Fox Mage
  • Administrator
  • Mage of Caerreyn, Level 4
  • *****
  • Posts: 2249
  • These sorts of things happen.
    • View Profile
    • virmir.com
Reply #2 on: April 08, 2015, 10:43:16 PM
I suspect that they were previously blocked by adblock and perhaps something changed before the list updated or something.  Then again, I don't really look at Twitter much!

[fox] Virmir


Virmir

  • Chaotic Neutral Cartoon Gray Fox Mage
  • Administrator
  • Mage of Caerreyn, Level 4
  • *****
  • Posts: 2249
  • These sorts of things happen.
    • View Profile
    • virmir.com
Reply #3 on: November 26, 2016, 02:49:13 PM
Getting rid of recommended blogs and all that other nonsense on tumblr

Good trees.  Have not logged into this site for years-- what a mess.

Code: [Select]
@-moz-document domain(tumblr.com) {
.is_recommended, .recommended_tumblelogs, .radar_footer, .radar_header, #tumblr_radar, #right_column{
    display: none;
    }
}

Fixed!

[fox] Virmir


Virmir

  • Chaotic Neutral Cartoon Gray Fox Mage
  • Administrator
  • Mage of Caerreyn, Level 4
  • *****
  • Posts: 2249
  • These sorts of things happen.
    • View Profile
    • virmir.com
Reply #4 on: November 26, 2016, 02:54:58 PM
Might as well shared a few others I use.

Hiding sponsored feeds on theoldreader.com

Code: [Select]
@-moz-document domain(theoldreader.com) {
.sponsored {
display: none !important;
}
}

Hide horrible emoticons in email subject lines in gmail (or anywhere else, really)

Code: [Select]
@-moz-document domain(mail.google.com) {
[goomoji]{
    display:none;
}
}

Disable the adblock whiner on deviantart.com (plus something else...  I forgot what)

Code: [Select]
@-moz-document domain(deviantart.com) {
.mc-ad-chrome{
display: none;
}
#block-notice{
display: none !important;
}
}

[fox] Virmir