This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// RSVP auto attendance IA bot quantum processor compumundohipermegared | |
// Run the code in the main event page with the extension, when the RSVP be enabled you automatically will be mark as going | |
// https://chrome.google.com/webstore/detail/custom-javascript-for-web/poakhlngfciodnhlhhgnaaelnpjljija/related?hl=en | |
const rsvpBtn = document.getElementsByClassName('rsvpIndicator-rsvp-yesButton')[0]; | |
const interval = setInterval(() => { | |
if (rsvpBtn.className.indexOf('disabled') == -1) { | |
rsvpBtn.click(); | |
clearInterval(interval); | |
console.log('YAYYH!! RSVP Done!!'); | |
} else { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Dark Nova theme | |
"workbench.colorCustomizations": { | |
"editor.background": "#2D2D2D", | |
"sideBar.background": "#252526", | |
"activityBar.background": "#333333", | |
"editor.lineHighlightBackground": "#444440", | |
"input.background": "#3C3C3C", | |
"list.focusBackground": "#444440", | |
"tab.activeBackground": "#2D2D2D", | |
"tab.border": "#2D2D2D", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Place your settings in this file to overwrite the default settings | |
{ | |
// Controls the font family. | |
"editor.fontFamily": "'Menlo'", | |
// Controls the font size in pixels. | |
"editor.fontSize": 16, | |
// Controls the line height. Use 0 to compute the lineHeight from the fontSize. | |
"editor.lineHeight": 19, | |
"editor.wordWrap": "off", | |
"editor.autoIndent": true, |