-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfreeify-discord
65 lines (43 loc) · 2.86 KB
/
freeify-discord
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
! Title: Freeify Discord
! Description: Removes paid elements and payment options from in-browser-discord
! Homepage: https://github.com/Dark-Dragon/freeify-discord/
! License: https://raw.githubusercontent.com/Dark-Dragon/freeify-discord/main/LICENSE
! MAIN SECTION ---
! removes 'nitro' and 'shop' button above direct messages list
discord.com##li[role="listitem"]:has( > div > a > div > div > div > div:has-text(Nitro))
discord.com##li[role="listitem"]:has( > div > a > div > div > div > div:has-text(Shop))
! removes 'send gift' button within text input
discord.com##button[aria-label="Send a gift"]
! removes 'enable super reactions' button in reactions pop-up
discord.com##div[aria-label="Enable Super Reactions"]
! removes 'unlock with nitro'-prompt when hovering a super reaction
discord.com##div[class^="burstReactionTooltipPrompt"]
! removes nitro only autocomplete emotes
discord.com##div[class^="nitroTopDividerContainer"]
discord.com##div[class^="premiumHeader"]
discord.com##div[class*="premiumEmoji"]
! removes 'unlock these with nitro' pop-up in emote/reactions selection
discord.com##div[class^="upsellContainer"]
! removes server boost progress bar
discord.com##li:has(div[data-list-item-id^="channels___boosts"])
! removes 'server boost' button in server context menu
discord.com##div[role="group"]:has( > div:has-text(Server Boost))
! removes nitro button on mini-profiles of nitro users
discord.com##div[class^="premiumIconWrapper"]
!removes nitro emotes when searching emote names upon first time collapsing the menu because I can't figure out how to force it to collapse. related issue https://github.com/Dark-Dragon/freeify-discord/issues/1
discord.com##div[class*="categorySectionNitroLocked"][class*="categorySectionCollapsed"]:has( > div > div > span:has-text(Available with Nitro))
! removes nitro reminder when typing messages surpassing the free user character limit
discord.com##div[class*="upsell"]:has( > div:has-text(Send longer messages with))
! removes nitro reminder when attempting to send files surpassing the free user file size limit
discord.com##div[class^="body"]:has(span:has-text(The max file size is)) > div[class^="defaultColor"]:has-text(Upgrade to Discord Nitro)
discord.com##div[class^="primaryActions"]:has( > button > div[class*="premiumSubscribeButton"])
! SETTINGS PAGES ---
! removes valorant ad in profile settings (let me know if this filter doesn't work, file name might by dynamic)
discord.com##div[style*="/assets/18cd49d1a67489a3b13c.png"]
! removes try out nitro box in profile settings
discord.com##div[class*="tryItOutSection"]
! removes unlock with nitro box in server profile settings
discord.com##div[class^="upsellOverlayContainer"]
! removes try out nitro box in appearance settings
discord.com##div[class^="premiumFeatureBorder"]
discord.com##div[class^="selectionGroup"]:has( > div > div > div > div > div[class^="tryItOutButtons"])