Topic: Tag Highlighter CSS for Firefox

Posted under e621 Tools and Applications

I wrote a crappy CSS code that can highlight specific tags of a post. So I can easily find gender tags without looking through general tags for them.

Screenshot

 

How-to:

1. See here for tutorial: Link
2. Put following CSS code in your "userContent.css" file and save.

Code
@-moz-document domain(e621.net) {
.tag-type-general > a[href$="=anthro"], 
.tag-type-general > a[href$="=anthrofied"], 
.tag-type-general > a[href$="=feral"], 
.tag-type-general > a[href$="=not_furry"] {
color: #00E6FF !important; font-weight: bold !important;
}

.tag-type-general > a[href$="=ambiguous_gender"], 
.tag-type-general > a[href$="=male"], 
.tag-type-general > a[href$="=female"], 
.tag-type-general > a[href$="=intersex"], 
.tag-type-general > a[href$="=cuntboy"], 
.tag-type-general > a[href$="=dickgirl"], 
.tag-type-general > a[href$="=herm"], 
.tag-type-general > a[href$="=maleherm"] {
color: #FFFF50 !important; font-weight: bold !important;
}

.tag-type-general > a[href$="=solo"], 
.tag-type-general > a[href$="=solo_focus"], 
.tag-type-general > a[href$="=duo"], 
.tag-type-general > a[href$="=duo_focus"], 
.tag-type-general > a[href$="=group"], 
.tag-type-general > a[href$="=zero_pictured"] {
color: Pink !important; font-weight: bold !important;
}
}
  • You can adjust code to add more tags or change colors, it's easy to figure out. (I am terrible at explaining.)

3. Restart Firefox to apply CSS.

CSS Color Picker: Link

Updated by Chessax

A nice little thing, gives me ideas myself. For other people, too bad this doesn't work out of the box in Chrome (not sure if Edge got that yet either). Next step would be to reorganize the tags, but that requires user scripts or extensions.

Below is my own very quick tag ideas for expansion of this, thought I'd share. Might update later to be more "copy paste"-friendly, more organized list(s), more complete and easier to read and review.

Some additional tags
Character form

alternate_species
anthro
digimorph
feralized
furrification
humanized
pokémorph
semi-anthro
transformation

Character count

crowd
audience

"Sex"

mtf
ftm

Character-character interaction

male/male
male/female
intersex/male
dickgirl/male
herm/male
maleherm/male
cuntboy/male
male/ambiguous

female/female
intersex/female
dickgirl/female
herm/female
maleherm/female
cuntboy/female
female/ambiguous

intersex/dickgirl
dickgirl/dickgirl
dickgirl/herm
maleherm/dickgirl
dickgirl/cuntboy
dickgirl/ambiguous

intersex/herm
herm/herm
maleherm/herm
herm/cuntboy
herm/ambiguous

intersex/maleherm
maleherm/maleherm
maleherm/cuntboy
maleherm/ambiguous

intersex/cuntboy
cuntboy/cuntboy
cuntboy/ambiguous

intersex/intersex
intersex/ambiguous

ambiguous/ambiguous

Sex positions/acts (assorted, incomplete)

Simplest solution would be to use href$="_position", in addition with:

1691
ass_to_ass
doggystyle
mounting
pole_sitting
spitroast

penile_masturbation
anal_masturbation
vaginal_masturbation
masturbation
autofellatio
auto_penis_lick
autotonguejob
autopenetration
autocunnilingnus
autofootjob
autorimming
autotailjob
frottage
female on top
grinding
hot dogging
male on top
cunnilingus
fellatio
beakjob
collaborative_fellatio
deep_throat
double_fellatio
oral_knotting
knotting
tentacle_fellatio
tonguejob
forced_oral
licking
ball_lick
penis_lick
rimming
snout_fuck
penetration
double_penetration
triple penetration
all three filled
multiple_penetration
shallow_penetration
balls_deep
deep_throat
anal
anal_penetration
vaginal
vaginal_penetration
oral
oral_penetration
gangbang
orgy
tailjob
tail_sex
tonguejob
titfuck
tribadism

Body positions/Poses (unsorted, incomplete)

Various hand_on_*, hand_in_*

all_fours
action_pose
arm_behind_head
hands_behind_head
hand_behind_head
ass_up
bent_over
crossed_arms
crossed_legs
sitting
standing
reclining
lying
crouching
on_one_knee
kneeling
on_one_leg
arm_support
step_pose
handstand
on_front
on_back
on_side
on_shoulders
balancing_on_tail
hanging_by_tail
raised_tail

Updated by anonymous

  • 1