├── LICENSE ├── README.md ├── account_switcher.js ├── activity_feed_bypass.js ├── archive ├── README.md ├── bots_mutual_guilds.js ├── copy_mention.js ├── embed_sender.js ├── full_timestamps.js ├── textmention.js └── theme_settings.js ├── at_all.js ├── bot_info.js ├── lib ├── EDPluginsUpdater.js └── JubyLib.js ├── mutual_friends_counter.js ├── mutual_guilds_counter.js ├── own_messages.js ├── plugins_versions.json ├── spotify_crack.js ├── staroption.js └── unread_servers.js /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright 2018-2020 Juby210 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ### Warning: These plugins are unmaintained and probably no longer works. 2 | 3 | # EnhancedDiscord Plugins 4 | Plugins for EnhancedDiscord. 5 | 6 | ### Information 7 | These plugins may require to enable `BD Plugins` in ed settings because using jQuery, so enable it and reload discord if not working. 8 | 9 | ## Spotify Crack 10 | Spotify listen along without premium! | [Download](https://raw.githubusercontent.com/juby210-PL/EnhancedDiscord-plugins/master/spotify_crack.js) 11 | 12 | ## Mutual Guilds Counter 13 | Mutual guilds counter | [Download](https://raw.githubusercontent.com/juby210-PL/EnhancedDiscord-plugins/master/mutual_guilds_counter.js) 14 | 15 | ## Mutual Friends Counter 16 | Mutual friends counter | [Download](https://raw.githubusercontent.com/juby210-PL/EnhancedDiscord-plugins/master/mutual_friends_counter.js) 17 | 18 | ![Counter](https://i.imgur.com/4PjfsN6.png) 19 | 20 | ## Own Messages 21 | Create your own messages for discord | [Download](https://raw.githubusercontent.com/juby210-PL/EnhancedDiscord-plugins/master/own_messages.js) 22 | 23 | To change messages change `own_messages.json`. To search messages browse `own_messages.all.json`. 24 | 25 | ## Star Option 26 | Star option in message options | [Download](https://raw.githubusercontent.com/juby210-PL/EnhancedDiscord-plugins/master/staroption.js) 27 | 28 | ## Account Switcher 29 | Lets you switch between multiple Discord accounts | [Download](https://raw.githubusercontent.com/juby210-PL/EnhancedDiscord-plugins/master/account_switcher.js) 30 | 31 | Add accounts in plugin settings 32 | 33 | ![Preview](https://i.imgur.com/KkH0Sga.png) 34 | 35 | ## @all 36 | Mention all members when @all (@everyone without permissions) | [Download](https://raw.githubusercontent.com/juby210-PL/EnhancedDiscord-plugins/master/at_all.js) 37 | 38 | ## Unread Servers 39 | Open unread server list on ctrl+s | [Download](https://raw.githubusercontent.com/juby210-PL/EnhancedDiscord-plugins/master/unread_servers.js) 40 | 41 | ## Bot Info 42 | Show DiscordBots.org bot info on bot profile | [Download](https://raw.githubusercontent.com/juby210-PL/EnhancedDiscord-plugins/master/bot_info.js) 43 | 44 | ## Activity Feed Bypass 45 | Activity Feed privacy permissions bypass | [Download](https://raw.githubusercontent.com/juby210-PL/EnhancedDiscord-plugins/master/activity_feed_bypass.js) 46 | -------------------------------------------------------------------------------- /account_switcher.js: -------------------------------------------------------------------------------- 1 | const Plugin = require('../plugin'); 2 | const {loadData, saveData} = EDApi; 3 | 4 | module.exports = new Plugin({ 5 | name: 'Account Switcher', 6 | author: 'Juby210#0577', 7 | description: 'Lets you switch between multiple Discord accounts', 8 | color: '#f44336', 9 | preload: true, 10 | 11 | load: () => { 12 | $('head').append(``) 26 | module.exports.load2() 27 | 28 | const tabsM = findModule('topPill') 29 | monkeyPatch(findModule('getUserSettingsSections').default.prototype, 'render', b => { 30 | if($('#switcher-btn').length == 0) { 31 | let parent = document.querySelector('.' + tabsM.side.split(' ')[0]) 32 | if(!parent) { 33 | setTimeout(() => b.thisObject.forceUpdate(), 100) 34 | return b.callOriginalMethod(b.methodArguments) 35 | } 36 | 37 | if($(parent).find('.'+tabsM.item.split(' ')[0]).length == 0) { 38 | return b.callOriginalMethod(b.methodArguments) 39 | } 40 | let logout = $(parent).find('.'+tabsM.item.split(' ')[0]).last() 41 | let btn = $(logout).clone() 42 | $(btn).attr('id', 'switcher-btn').text('Switch Account') 43 | $(btn).click(() => { 44 | findModule('login').loginReset() 45 | setTimeout(() => module.exports.load2(), 500) 46 | }) 47 | $(logout).after(btn) 48 | } 49 | return b.callOriginalMethod(b.methodArguments) 50 | }) 51 | }, 52 | unload: () => { 53 | let s = document.getElementById('accswitch'); 54 | if(s) s.parentElement.removeChild(s); 55 | s = document.getElementById('accswitch-style'); 56 | if(s) s.parentElement.removeChild(s); 57 | s = findModule('getUserSettingsSections').default.prototype 58 | if(s.render.__monkeyPatched) s.render.unpatch(); 59 | }, 60 | 61 | load2: () => { 62 | let s = document.getElementById('accswitch'); 63 | if(s) s.parentElement.removeChild(s); 64 | let accounts = loadData(module.exports.id, 'accounts'); 65 | if(!accounts) accounts = []; 66 | 67 | const btn = findModule('button'); 68 | const l = findModule('login'); 69 | 70 | $('.'+findModule('authBox').authBox.split(' ')[0]).after(`
Account Switcher:
`); 71 | accounts.forEach(a => { 72 | let el = $('.accswitchbtn'); 73 | if(el.length == 0) el = $('#accswitch-aaaa'); 74 | $(el).after(``); 75 | $('#accswitch').find('.accswitchbtn').last().click(() => { 76 | if(a.email) { 77 | l.login({email:a.emailv,password:a.pass,undelete:false}); 78 | setTimeout(() => { 79 | if($('.'+btn.button.split(' ')[0]).length != 0) { 80 | setInterval(() => { 81 | if($('.'+btn.button.split(' ')[0]).length == 0) window.location.reload(); 82 | }, 200); 83 | } else window.location.reload(); 84 | }, 1000); 85 | } else { 86 | l.loginToken(a.token); 87 | setTimeout(() => window.location.reload(),200); 88 | } 89 | }); 90 | }); 91 | }, 92 | 93 | generateSettings: () => { 94 | let accounts = loadData(module.exports.id, 'accounts'); 95 | if(!accounts) accounts = []; 96 | 97 | const inp = findModule('input'); 98 | const btn = findModule('button'); 99 | const h = window.ED.classMaps.headers; 100 | 101 | let list = ''; 102 | accounts.forEach(a => { 103 | if(a.email) { 104 | let buttons = ``; 105 | list += `

If you use mfa, it's better to use login via token${buttons}

`; 106 | } else { 107 | let buttons = ``; 108 | list += `

${buttons}

`; 109 | } 110 | }); 111 | 112 | setTimeout(() => { 113 | module.exports.addListeners(); 114 | }, 5); 115 | 116 | return `
117 |
Account List:
118 |
119 | ${list} 120 |
121 |
122 | 123 | 124 | 125 |
126 |
`; 127 | }, 128 | listeners: { 129 | cte: e => { 130 | const inp = findModule('input'); 131 | const btn = findModule('button'); 132 | let ac = e.target.parentElement; 133 | if(ac.tagName == 'BUTTON') ac = ac.parentElement; 134 | $(ac).find('.accswitcher-acc-token').remove(); 135 | $(ac).find('.accswitcher-acc-cte').remove(); 136 | $(ac).find('.accswitcher-acc-name').after(``); 137 | $(ac).find('.accswitcher-acc-rem').before(`If you use mfa, it's better to use login via token`); 138 | $(ac).find('.accswitcher-acc-rem').after(``); 139 | module.exports.addListeners(ac); 140 | }, 141 | ctt: e => { 142 | const inp = findModule('input'); 143 | const btn = findModule('button'); 144 | let ac = e.target.parentElement; 145 | if(ac.tagName == 'BUTTON') ac = ac.parentElement; 146 | $(ac).find('.accswitcher-acc-email').remove(); 147 | $(ac).find('.accswitcher-acc-pass').remove(); 148 | $(ac).find('span').remove(); 149 | $(ac).find('.accswitcher-acc-ctt').remove(); 150 | $(ac).find('.accswitcher-acc-name').after(``); 151 | $(ac).find('.accswitcher-acc-rem').after(``); 152 | module.exports.addListeners(ac); 153 | }, 154 | rem: e => { 155 | let ac = e.target.parentElement; 156 | if(ac.tagName == 'BUTTON') ac = ac.parentElement; 157 | ac.parentElement.removeChild(ac); 158 | }, 159 | addthisac: e => { 160 | const inp = findModule('input'); 161 | const btn = findModule('button'); 162 | let s = $('#accswitcher-settings'); 163 | let buttons = ``; 164 | let list = `

${buttons}

`; 165 | $(s).find('#accswitcher-slist').append(list); 166 | module.exports.addListeners($(s).find('#accswitcher-slist').find('.accswitcher-acc').last()); 167 | }, 168 | addac: e => { 169 | const inp = findModule('input'); 170 | const btn = findModule('button'); 171 | let s = $('#accswitcher-settings'); 172 | let buttons = ``; 173 | let list = `

${buttons}

`; 174 | $(s).find('#accswitcher-slist').append(list); 175 | module.exports.addListeners($(s).find('#accswitcher-slist').find('.accswitcher-acc').last()); 176 | }, 177 | save: e => { 178 | let accounts = []; 179 | $('#accswitcher-settings').find('#accswitcher-slist').children().each((i,e) => { 180 | if(e.tagName == 'BR') return; 181 | let email = $(e).find('.accswitcher-acc-email').length != 0; 182 | if(email) { 183 | accounts.push({email,emailv:$(e).find('.accswitcher-acc-email').val(),pass:$(e).find('.accswitcher-acc-pass').val(),name:$(e).find('.accswitcher-acc-name').val()}); 184 | } else { 185 | accounts.push({token:$(e).find('.accswitcher-acc-token').val(),name:$(e).find('.accswitcher-acc-name').val()}) 186 | } 187 | }); 188 | saveData(module.exports.id, 'accounts', accounts); 189 | e.target.innerText = 'Saved!'; 190 | setTimeout(() => e.target.innerText = "Save", 1000); 191 | } 192 | }, 193 | addListeners: a => { 194 | if(!a) a = $('#accswitcher-settings'); 195 | $(a).find('.accswitcher-acc-cte').click(module.exports.listeners.cte); 196 | $(a).find('.accswitcher-acc-ctt').click(module.exports.listeners.ctt); 197 | $(a).find('.accswitcher-acc-rem').click(module.exports.listeners.rem); 198 | $(a).find('#accswitcher-addthisac').click(module.exports.listeners.addthisac); 199 | $(a).find('#accswitcher-addac').click(module.exports.listeners.addac); 200 | $(a).find('#accswitcher-save').click(module.exports.listeners.save); 201 | }, 202 | config: {} 203 | }); 204 | -------------------------------------------------------------------------------- /activity_feed_bypass.js: -------------------------------------------------------------------------------- 1 | const Plugin = require('../plugin') 2 | 3 | module.exports = new Plugin({ 4 | name: 'Activity Feed Bypass', 5 | author: 'Juby210#0577', 6 | description: 'Activity Feed privacy permissions bypass', 7 | color: '#7289da', 8 | 9 | load: () => { 10 | this.unpatch = monkeyPatch(findModule('hasConsented'), 'hasConsented', b => { 11 | if(b.methodArguments[0] == 'personalization' && 12 | (window.location.pathname == '/activity' || 13 | window.location.pathname == '/channels/@me')) return true 14 | return b.callOriginalMethod(b.methodArguments[0]) 15 | }) 16 | }, 17 | unload: () => { 18 | if(this.unpatch) this.unpatch() 19 | } 20 | }) 21 | -------------------------------------------------------------------------------- /archive/README.md: -------------------------------------------------------------------------------- 1 | # Plugins Archive 2 | Archive of unsupported plugins, mostly not working or with fewer features than alternatives. 3 | I'm not going to fix this plugins, because as a daily mod I use [powercord](https://github.com/powercord-org/powercord). 4 | 5 | ### Copy Mention 6 | Better alternative: [CopyUtils](https://github.com/polop2301/BD-Plugins/blob/master/Plugins/CopyUtils/CopyUtils.plugin.js) 7 | 8 | ### Full Timestamps 9 | Better alternative: [CompleteTimestamps](https://github.com/mwittrien/BetterDiscordAddons/tree/master/Plugins/CompleteTimestamps) 10 | 11 | ### Embed Sender 12 | Broken, I'm not going to fix this plugin. 13 | 14 | ### Theme Settings 15 | Broken, I'm not going to fix this plugin. 16 | 17 | ### Text Mention 18 | Broken, I'm not going to fix this plugin. ~~WIP Alternative for powercord: [Suggestion](https://github.com/powercord-community/suggestions/issues/1)~~ 19 | 20 | ### Bots Mutual Guilds 21 | Discord has it built in now. 22 | -------------------------------------------------------------------------------- /archive/bots_mutual_guilds.js: -------------------------------------------------------------------------------- 1 | const Plugin = require('../plugin') 2 | 3 | module.exports = new Plugin({ 4 | name: 'Bots Mutual Guilds', 5 | author: 'Juby210#0577', 6 | description: 'Brings back mutual servers to bot accounts', 7 | color: 'aqua', 8 | 9 | load: () => { 10 | findModule("dispatch").subscribe("USER_PROFILE_MODAL_OPEN", module.exports.check) 11 | }, 12 | unload: () => { 13 | findModule("dispatch").unsubscribe("USER_PROFILE_MODAL_OPEN", module.exports.check) 14 | }, 15 | 16 | check: arg => { 17 | let el = $("."+findModule(m => m.modal && m.inner && !m.close).modal.split(" ")[0]) 18 | if(el.length == 0) { 19 | setTimeout(() => module.exports.check(arg), 100) 20 | return; 21 | } 22 | // why { findModuleByDisplayName } = EDApi doesn't work on newest ED.. 23 | if(EDApi.findModuleByProps("getUser", "getUsers").getUser(arg.userId).bot) module.exports.listener(el, arg.userId) 24 | }, 25 | listener: (el, id) => { 26 | let hc = EDApi.findModuleByProps("header", "botTag", "listAvatar") 27 | let c = findModule("tabBarContainer") 28 | let c2 = EDApi.findModuleByProps("item", "selected", "themed") 29 | let m = findModule("Messages").Messages 30 | 31 | let sc = findModule("scrollerWrap") 32 | let ic = EDApi.findModuleByProps("iconSizeMedium", "iconInactive") 33 | 34 | $(el).find("." + hc.header.split(" ")[0]).parent() 35 | .append(`
36 | ${m["USER_INFO"]}
${m["MUTUAL_GUILDS"]}
`) 37 | 38 | let old 39 | $(el).find("#bmg").click(() => { 40 | if($(el).find("#bmg").hasClass(c2.selected)) return; 41 | 42 | $(el).find("#bmg0").removeClass(c2.selected).css("border-color", "transparent") 43 | $(el).find("#bmg").addClass(c2.selected).css("border-color", "rgb(255,255,255)") 44 | 45 | old = $(el).find("." + hc.body.split(" ")[0]).html() 46 | $(el).find("." + hc.body.split(" ")[0]).html(`
`) 47 | 48 | let guilds = [] 49 | Object.keys(findModule("getGuilds").getGuilds()).forEach(g => { 50 | let u = findModule("getNick").getMembers(g).find(u => u.userId == id) 51 | if(u) guilds.push({ g: findModule("getGuilds").getGuild(g), nick: u.nick }) 52 | }) 53 | 54 | guilds.forEach(g => { 55 | $(el).find("#bmgl").append($(`
56 |
${g.g.name}
${g.nick ? g.nick : ""}
`) 57 | .click(() => module.exports.select(g.g.id))) 58 | }) 59 | 60 | let mgc = ED.plugins["mutual_guilds_counter"] 61 | if(mgc && mgc.settings.enabled !== false) mgc.listener() 62 | }) 63 | 64 | $(el).find("#bmg0").click(() => { 65 | if($(el).find("#bmg0").hasClass(c2.selected)) return; 66 | 67 | $(el).find("#bmg").removeClass(c2.selected).css("border-color", "transparent") 68 | $(el).find("#bmg0").addClass(c2.selected).css("border-color", "rgb(255,255,255)") 69 | 70 | $(el).find("." + hc.body.split(" ")[0]).html(old) 71 | }) 72 | }, 73 | select: g => { 74 | let cid = Object.values(findModule("getChannels").getChannels()).filter(c => c.guild_id == g)[0].id 75 | findModules('selectChannel')[1].selectChannel(g, cid) 76 | } 77 | }); -------------------------------------------------------------------------------- /archive/copy_mention.js: -------------------------------------------------------------------------------- 1 | const Plugin = require('../plugin'); 2 | const Clipboard = require("electron").clipboard; 3 | 4 | // contains modified code from https://github.com/joe27g/EnhancedDiscord/blob/master/plugins/avatar_links.js 5 | // credits to joe & rauenzi 6 | 7 | module.exports = new Plugin({ 8 | name: 'Copy Mention', 9 | author: 'Juby210#2100', 10 | description: 'Add "Copy Mention" button to easy copy id mention of channel or user', 11 | color: '#09123b', 12 | 13 | load: () => { 14 | findModule('dispatch').subscribe('CONTEXT_MENU_OPEN', module.exports.listener) 15 | }, 16 | unload: () => { 17 | findModule('dispatch').unsubscribe('CONTEXT_MENU_OPEN', module.exports.listener) 18 | }, 19 | 20 | listener: async () => { 21 | await module.exports.sleep(5) 22 | const menu = document.querySelector('.' + findModule('contextMenu').contextMenu.split(' ')[0]) 23 | if(!menu) return; 24 | const reactData = menu.__reactInternalInstance$ 25 | 26 | let label = '' 27 | let content = '' 28 | 29 | // For channels 30 | if(reactData.memoizedProps && reactData.memoizedProps.children && 31 | reactData.memoizedProps.children[2] && 32 | reactData.memoizedProps.children[2].props) { 33 | 34 | let props = reactData.memoizedProps.children[2].props 35 | if(props.channel) { 36 | label = 'Copy Channel Mention' 37 | content = `<#${props.channel.id}>` 38 | } else if (props.id) { // DM Groups 39 | label = 'Copy Channel Mention' 40 | content = `<#${props.id}>` 41 | } 42 | } 43 | 44 | // For users 45 | if(reactData.return && reactData.return.return && 46 | reactData.return.return.return && 47 | reactData.return.return.return.return && 48 | reactData.return.return.return.return.memoizedProps && 49 | reactData.return.return.return.return.memoizedProps.user) { 50 | 51 | label = 'Copy User Mention' 52 | content = `<@${reactData.return.return.return.return.memoizedProps.user.id}>` 53 | } 54 | 55 | if(label == '') return; 56 | module.exports.addMenuItem(content, label) 57 | }, 58 | addMenuItem: (content, label) => { 59 | let c = findModule('contextMenu') 60 | let cmGroups = document.getElementsByClassName(c.itemGroup.split(' ')[0]) 61 | if(!cmGroups || cmGroups.length == 0) return; 62 | 63 | let item = document.createElement('div') 64 | item.className = c.item + ' ' + c.clickable 65 | let itemLabel = document.createElement("div") 66 | itemLabel.className = c.label 67 | itemLabel.innerHTML = label 68 | item.appendChild(itemLabel) 69 | 70 | let lastGroup = cmGroups[cmGroups.length-1] 71 | lastGroup.appendChild(item) 72 | 73 | item.onclick = () => { 74 | Clipboard.write({text: content}); 75 | findModule('closeContextMenu').closeContextMenu() 76 | } 77 | } 78 | }); -------------------------------------------------------------------------------- /archive/embed_sender.js: -------------------------------------------------------------------------------- 1 | const Plugin = require("../plugin"); 2 | let JubyLib; 3 | 4 | function createWindow() { 5 | const addNewFieldBtn = ``; 6 | let fields = []; 7 | let fieldHtml = ` 8 | `; 9 | 10 | const authorContent = ` 11 | `; 12 | const footerContent = ` 13 | `; 14 | let fieldsCatContent = `${addNewFieldBtn}
`; 15 | const content = ` 16 | 17 |