This style sheet swaps the new Twitter Tweet Reactions with Twemojis
Tweet Reactions but with Twemojis by wongmjane
Details
Authorwongmjane
LicenseThe MIT License
Categorytwitter
Created
Updated
Size1.4 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
it’s a rough draft for now, let’s me know what you think about it. I’m on Twitter @wongmjane
Source code
/* ==UserStyle==
@name Tweet Reactions but with Twemojis
@version 20210909.17.54
@namespace userstyles.world/user/wongmjane
@description This style sheet swaps the new Twitter Tweet Reactions with Twemojis
@author wongmjane
@license The MIT License
==/UserStyle== */
@-moz-document domain("twitter.com") {
/*
Tweet Reactions but with Twemojis
pieced together by Jane Manchun Wong (@wongmjane)
*/
div[style*='https://abs.twimg.com/responsive-web/client-web/like'] {
background-image: url('https://abs-0.twimg.com/emoji/v2/svg/2764.svg') !important;
background-size: contain;
}
div[style*='https://abs.twimg.com/responsive-web/client-web/hmm'] {
background-image: url('https://abs-0.twimg.com/emoji/v2/svg/1f914.svg') !important;
background-size: contain;
}
div[style*='https://abs.twimg.com/responsive-web/client-web/sad'] {
background-image: url('https://abs-0.twimg.com/emoji/v2/svg/1f622.svg') !important;
background-size: contain;
}
div[style*='https://abs.twimg.com/responsive-web/client-web/haha'] {
background-image: url('https://abs-0.twimg.com/emoji/v2/svg/1f602.svg') !important;
background-size: contain;
}
div[style*='https://abs.twimg.com/responsive-web/client-web/cheer'] {
background-image: url('https://abs-0.twimg.com/emoji/v2/svg/1f44f.svg') !important;
background-size: contain;
}
}