mirror of
https://github.com/EndPwnArchive/EndPwn3Plugins.git
synced 2024-08-14 23:57:06 +00:00
updates
This commit is contained in:
parent
9070d97d6d
commit
d99fb2e746
2 changed files with 32 additions and 31 deletions
|
@ -1,3 +1,10 @@
|
|||
exports = {
|
||||
manifest: {
|
||||
author: "Cynosphere",
|
||||
name: "Character Counter",
|
||||
description: "Counts characters in the chatbox."
|
||||
},
|
||||
start: function(){
|
||||
function setupCharCount() {
|
||||
if (document.body.contains(charcount)) return;
|
||||
if (!text || !document.body.contains(text)) {
|
||||
|
@ -20,13 +27,6 @@ charcount.style["font-size"] = "85%";
|
|||
|
||||
let text = null;
|
||||
|
||||
exports = {
|
||||
manifest: {
|
||||
author: "Cynosphere",
|
||||
name: "Character Counter",
|
||||
description: "Counts characters in the chatbox."
|
||||
},
|
||||
start: function(){
|
||||
let charcount_mo = new MutationObserver(setupCharCount);
|
||||
charcount_mo.observe(document.querySelector(".app.flex-vertical"), {
|
||||
childList: true,
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
exports = {
|
||||
manifest: {
|
||||
author: "Cynosphere",
|
||||
author: "Cynosphere, Murm",
|
||||
name: "Spotify Premium Spoof",
|
||||
description: "Spoofs premium check and allows listen along without premium.",
|
||||
replacements: [
|
||||
{signature:'r.isPremium=n',payload:'r.isPremium=true'}
|
||||
{signature:'r.isPremium=n',payload:'r.isPremium=true'},
|
||||
{signature:'isPremium:"premium"===t.body.product',payload:'isPremium:true'}
|
||||
]
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue