Skip to content

Instantly share code, notes, and snippets.

View Cholik's full-sized avatar
💤

Cholik Cholik

💤
View GitHub Profile
@Cholik
Cholik / addreactiontext.plugin.js
Last active June 5, 2020 19:16
Add regional indicator reactions by just typing the corresponding keys
//META{"name":"AddReactionText","displayName":"AddReactionText","website":"https://gist.github.com/Cholik/a30a58bae7176baa7766bfd156f3e30e","source":"https://gist.githubusercontent.com/Cholik/a30a58bae7176baa7766bfd156f3e30e/raw/addreactiontext.plugin.js?update"}*//
class AddReactionText {
getName() {
return "AddReactionText";
}
getDescription() {
return "Adds typed letters as reaction lel";
}
getVersion() {
return "0.1.14";
@Cholik
Cholik / imagenameprefill.plugin.js
Last active February 2, 2019 12:15
BetterDiscord - Prefill Image Upload Modal
//META{"name":"ImageNamePrefill"}*//
class ImageNamePrefill {
getName() {return "ImageNamePrefill";} // Name of your plugin to show on the plugins page
getDescription() {return "Inserts the image file name as message in upload dialog.";} // Description to show on the plugins page
getVersion() {return "0.0.2";} // Current version. I recommend following semantic versioning <http://semver.org/> (e.g. 0.0.1)
getAuthor() {return "Cholik";} // Your name
debugOut(msg) {
if(this.DEBUG) {
@Cholik
Cholik / quoteonclick.plugin.js
Last active July 24, 2019 15:43
BetterDiscord - QuoteOnClick Plugin
//META{"name":"QuoteOnClickPlugin"}*//
class QuoteOnClickPlugin {
getName() {return "QuoteOnClick";} // Name of your plugin to show on the plugins page
getDescription() {return "Quote a message by simply double clicking it";} // Description to show on the plugins page
getVersion() {return "0.0.5";} // Current version. I recommend following semantic versioning <http://semver.org/> (e.g. 0.0.1)
getAuthor() {return "Cholik";} // Your name
debugOut(msg) {
if(this.DEBUG) {
@Cholik
Cholik / hideignore.theme.css
Last active January 5, 2019 13:02
BetterDiscord Hide Ignored Message Container
//META{"name":"Hide Ignore","description":"Hides ignored message containers.","author":"Cholik","version":"0.2","source":"https://gist.githubusercontent.com/Cholik/51184eeaff1a33d0089fe42f4bc626b3/raw/hideignore.theme.css"}*//
.da-messageGroupBlocked {
border-color: hsla(0,0%,100%,.04) !important;
border-top: 0 !important;
overflow: hidden !important;
margin: 0 20px 0 20px !important;
border-bottom-color: hsla(0,0%,100%,.04) !important;
height: 0px !important;
}
@Cholik
Cholik / hidegift.theme.css
Last active January 5, 2019 13:05
BetterDiscord Hide Gift Button
//META{"name":"Hide Gift Button","description":"Hides button on the right side of the input field.","author":"Cholik","version":"0.2","source":"https://gist.githubusercontent.com/Cholik/4755a2739b6ad32cbd5f0132a1007f7b/raw/hidegift.theme.css"}*//
/*
* Hide Gift Button
*/
.da-channelTextArea button[tabindex="2"] {
display:none;
}