├── .github └── ISSUE_TEMPLATE │ ├── bug-report.md │ └── script-idea.md ├── README.md ├── index.json ├── messages.json ├── networking ├── greetings_toast │ ├── anniversary_ar.json │ ├── anniversary_de.json │ ├── anniversary_en.json │ ├── anniversary_fr.json │ ├── anniversary_pa.json │ ├── anniversary_pt.json │ ├── anniversary_ru.json │ ├── birthday_ar.json │ ├── birthday_de.json │ ├── birthday_en.json │ ├── birthday_fr.json │ ├── birthday_pa.json │ ├── birthday_pt.json │ ├── birthday_ru.json │ ├── good_afternoon_fl_ar.json │ ├── good_afternoon_fl_de.json │ ├── good_afternoon_fl_en.json │ ├── good_afternoon_fl_fr.json │ ├── good_afternoon_fl_pa.json │ ├── good_afternoon_fl_pt.json │ ├── good_afternoon_fl_ru.json │ ├── good_afternoon_hs_ar.json │ ├── good_afternoon_hs_de.json │ ├── good_afternoon_hs_en.json │ ├── good_afternoon_hs_fr.json │ ├── good_afternoon_hs_pa.json │ ├── good_afternoon_hs_pt.json │ ├── good_afternoon_hs_ru.json │ ├── good_afternoon_il_ar.json │ ├── good_afternoon_il_de.json │ ├── good_afternoon_il_en.json │ ├── good_afternoon_il_fr.json │ ├── good_afternoon_il_pa.json │ ├── good_afternoon_il_pt.json │ ├── good_afternoon_il_ru.json │ ├── good_evening_fl_ar.json │ ├── good_evening_fl_de.json │ ├── good_evening_fl_en.json │ ├── good_evening_fl_fr.json │ ├── good_evening_fl_pa.json │ ├── good_evening_fl_pt.json │ ├── good_evening_fl_ru.json │ ├── good_evening_hs_ar.json │ ├── good_evening_hs_de.json │ ├── good_evening_hs_en.json │ ├── good_evening_hs_fr.json │ ├── good_evening_hs_pa.json │ ├── good_evening_hs_pt.json │ ├── good_evening_hs_ru.json │ ├── good_evening_il_ar.json │ ├── good_evening_il_de.json │ ├── good_evening_il_en.json │ ├── good_evening_il_fr.json │ ├── good_evening_il_pa.json │ ├── good_evening_il_pt.json │ ├── good_evening_il_ru.json │ ├── good_morning_fl_ar.json │ ├── good_morning_fl_de.json │ ├── good_morning_fl_en.json │ ├── good_morning_fl_fr.json │ ├── good_morning_fl_pa.json │ ├── good_morning_fl_pt.json │ ├── good_morning_fl_ru.json │ ├── good_morning_hs_ar.json │ ├── good_morning_hs_de.json │ ├── good_morning_hs_en.json │ ├── good_morning_hs_fr.json │ ├── good_morning_hs_pa.json │ ├── good_morning_hs_pt.json │ ├── good_morning_hs_ru.json │ ├── good_morning_il_ar.json │ ├── good_morning_il_de.json │ ├── good_morning_il_en.json │ ├── good_morning_il_fr.json │ ├── good_morning_il_pa.json │ ├── good_morning_il_pt.json │ ├── good_morning_il_ru.json │ ├── graduation_ar.json │ ├── graduation_de.json │ ├── graduation_en.json │ ├── graduation_fr.json │ ├── graduation_pa.json │ ├── graduation_pt.json │ ├── graduation_ru.json │ ├── promotion_ar.json │ ├── promotion_de.json │ ├── promotion_en.json │ ├── promotion_fr.json │ ├── promotion_pa.json │ ├── promotion_pt.json │ └── promotion_ru.json ├── news_ar.json ├── news_de.json ├── news_en.json ├── news_fr.json ├── news_pa.json ├── news_pt.json ├── news_ru.json ├── quotes.json ├── translate_news.py ├── update_news.py └── update_quotes.py ├── scripts ├── bypass_checker.js ├── custom_reminders.js ├── custom_toast.js ├── daily_news.js ├── flexi_quotes.js ├── greetings_toast.js ├── message_bomber.js ├── saved_replies.js ├── scheduled_messages.js ├── scheduled_messages_beta.js ├── screenshots │ ├── bypass_checker_1.jpg │ ├── bypass_checker_2.jpg │ ├── custom_reminders_1.jpg │ ├── custom_reminders_2.jpg │ ├── custom_toast_1.jpg │ ├── custom_toast_2.jpg │ ├── daily_news_1.jpg │ ├── daily_news_2.jpg │ ├── flexi_quotes_1.jpeg │ ├── flexi_quotes_2.jpeg │ ├── message_bomber_1.jpg │ ├── message_bomber_2.jpg │ ├── saved_replies_1.jpg │ ├── saved_replies_2.jpg │ ├── scheduled_messages_1.jpg │ ├── scheduled_messages_2.jpg │ ├── webui_1.jpg │ └── webui_2.jpg └── webui_script.js └── version.json /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/script-idea.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/.github/ISSUE_TEMPLATE/script-idea.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/README.md -------------------------------------------------------------------------------- /index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/index.json -------------------------------------------------------------------------------- /messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/messages.json -------------------------------------------------------------------------------- /networking/greetings_toast/anniversary_ar.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Happy Anniversary, {username}!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/anniversary_de.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Happy Anniversary, {username}!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/anniversary_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Happy Anniversary, {username}!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/anniversary_fr.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Happy Anniversary, {username}!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/anniversary_pa.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Happy Anniversary, {username}!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/anniversary_pt.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Happy Anniversary, {username}!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/anniversary_ru.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Happy Anniversary, {username}!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/birthday_ar.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Happy Birthday, {username}! Wishing you all the best!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/birthday_de.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Happy Birthday, {username}! Wishing you all the best!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/birthday_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Happy Birthday! Wishing you all the best!", 3 | ] 4 | -------------------------------------------------------------------------------- /networking/greetings_toast/birthday_fr.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Happy Birthday, {username}! Wishing you all the best!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/birthday_pa.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Happy Birthday, {username}! Wishing you all the best!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/birthday_pt.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Happy Birthday, {username}! Wishing you all the best!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/birthday_ru.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Happy Birthday, {username}! Wishing you all the best!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_afternoon_fl_ar.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Good afternoon, {username}. I hope your day is progressing well.", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_afternoon_fl_de.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Good afternoon, {username}. I hope your day is progressing well.", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_afternoon_fl_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/networking/greetings_toast/good_afternoon_fl_en.json -------------------------------------------------------------------------------- /networking/greetings_toast/good_afternoon_fl_fr.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Good afternoon, {username}. I hope your day is progressing well.", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_afternoon_fl_pa.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Good afternoon, {username}. I hope your day is progressing well.", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_afternoon_fl_pt.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Good afternoon, {username}. I hope your day is progressing well.", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_afternoon_fl_ru.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Good afternoon, {username}. I hope your day is progressing well.", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_afternoon_hs_ar.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Good afternoon, {username}! Is it too early for happy hour?", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_afternoon_hs_de.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Good afternoon, {username}! Is it too early for happy hour?", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_afternoon_hs_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Good afternoon, {username}! Is it too early for happy hour?", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_afternoon_hs_fr.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Good afternoon, {username}! Is it too early for happy hour?", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_afternoon_hs_pa.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Good afternoon, {username}! Is it too early for happy hour?", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_afternoon_hs_pt.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Good afternoon, {username}! Is it too early for happy hour?", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_afternoon_hs_ru.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Good afternoon, {username}! Is it too early for happy hour?", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_afternoon_il_ar.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Hey {username}, good afternoon!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_afternoon_il_de.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Hey {username}, good afternoon!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_afternoon_il_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Hey {username}, good afternoon!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_afternoon_il_fr.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Hey {username}, good afternoon!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_afternoon_il_pa.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Hey {username}, good afternoon!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_afternoon_il_pt.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Hey {username}, good afternoon!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_afternoon_il_ru.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Hey {username}, good afternoon!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_evening_fl_ar.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Good afternoon, {username}. I hope your day is progressing well.", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_evening_fl_de.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Good afternoon, {username}. I hope your day is progressing well.", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_evening_fl_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Good afternoon, {username}. I hope your day is progressing well.", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_evening_fl_fr.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Good afternoon, {username}. I hope your day is progressing well.", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_evening_fl_pa.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Good afternoon, {username}. I hope your day is progressing well.", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_evening_fl_pt.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Good afternoon, {username}. I hope your day is progressing well.", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_evening_fl_ru.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Good afternoon, {username}. I hope your day is progressing well.", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_evening_hs_ar.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Good afternoon, {username}! Is it too early for happy hour?", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_evening_hs_de.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Good afternoon, {username}! Is it too early for happy hour?", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_evening_hs_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Good afternoon, {username}! Is it too early for happy hour?", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_evening_hs_fr.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Good afternoon, {username}! Is it too early for happy hour?", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_evening_hs_pa.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Good afternoon, {username}! Is it too early for happy hour?", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_evening_hs_pt.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Good afternoon, {username}! Is it too early for happy hour?", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_evening_hs_ru.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Good afternoon, {username}! Is it too early for happy hour?", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_evening_il_ar.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Hey {username}, good afternoon!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_evening_il_de.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Hey {username}, good afternoon!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_evening_il_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Hey {username}, good afternoon!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_evening_il_fr.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Hey {username}, good afternoon!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_evening_il_pa.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Hey {username}, good afternoon!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_evening_il_pt.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Hey {username}, good afternoon!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_evening_il_ru.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Hey {username}, good afternoon!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_morning_fl_ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/networking/greetings_toast/good_morning_fl_ar.json -------------------------------------------------------------------------------- /networking/greetings_toast/good_morning_fl_de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/networking/greetings_toast/good_morning_fl_de.json -------------------------------------------------------------------------------- /networking/greetings_toast/good_morning_fl_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/networking/greetings_toast/good_morning_fl_en.json -------------------------------------------------------------------------------- /networking/greetings_toast/good_morning_fl_fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/networking/greetings_toast/good_morning_fl_fr.json -------------------------------------------------------------------------------- /networking/greetings_toast/good_morning_fl_pa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/networking/greetings_toast/good_morning_fl_pa.json -------------------------------------------------------------------------------- /networking/greetings_toast/good_morning_fl_pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/networking/greetings_toast/good_morning_fl_pt.json -------------------------------------------------------------------------------- /networking/greetings_toast/good_morning_fl_ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/networking/greetings_toast/good_morning_fl_ru.json -------------------------------------------------------------------------------- /networking/greetings_toast/good_morning_hs_ar.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Good morning, {username}! Did you remember to put your face on?", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_morning_hs_de.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Good morning, {username}! Did you remember to put your face on?", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_morning_hs_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/networking/greetings_toast/good_morning_hs_en.json -------------------------------------------------------------------------------- /networking/greetings_toast/good_morning_hs_fr.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Good morning, {username}! Did you remember to put your face on?", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_morning_hs_pa.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Good morning, {username}! Did you remember to put your face on?", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_morning_hs_pt.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Good morning, {username}! Did you remember to put your face on?", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_morning_hs_ru.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Good morning, {username}! Did you remember to put your face on?", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_morning_il_ar.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Morning, {username}! Hope you slept well!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_morning_il_de.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Morning, {username}! Hope you slept well!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_morning_il_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Morning, {username}! Hope you slept well!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_morning_il_fr.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Morning, {username}! Hope you slept well!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_morning_il_pa.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Morning, {username}! Hope you slept well!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_morning_il_pt.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Morning, {username}! Hope you slept well!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/good_morning_il_ru.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Morning, {username}! Hope you slept well!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/graduation_ar.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Happy Anniversary, {username}!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/graduation_de.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Happy Anniversary, {username}!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/graduation_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Happy Anniversary, {username}!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/graduation_fr.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Happy Anniversary, {username}!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/graduation_pa.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Happy Anniversary, {username}!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/graduation_pt.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Happy Anniversary, {username}!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/graduation_ru.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Happy Anniversary, {username}!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/promotion_ar.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Happy Anniversary, {username}!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/promotion_de.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Happy Anniversary, {username}!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/promotion_en.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Happy Anniversary, {username}!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/promotion_fr.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Happy Anniversary, {username}!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/promotion_pa.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Happy Anniversary, {username}!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/promotion_pt.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Happy Anniversary, {username}!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/greetings_toast/promotion_ru.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Happy Anniversary, {username}!", 3 | 4 | ] 5 | -------------------------------------------------------------------------------- /networking/news_ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/networking/news_ar.json -------------------------------------------------------------------------------- /networking/news_de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/networking/news_de.json -------------------------------------------------------------------------------- /networking/news_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/networking/news_en.json -------------------------------------------------------------------------------- /networking/news_fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/networking/news_fr.json -------------------------------------------------------------------------------- /networking/news_pa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/networking/news_pa.json -------------------------------------------------------------------------------- /networking/news_pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/networking/news_pt.json -------------------------------------------------------------------------------- /networking/news_ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/networking/news_ru.json -------------------------------------------------------------------------------- /networking/quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/networking/quotes.json -------------------------------------------------------------------------------- /networking/translate_news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/networking/translate_news.py -------------------------------------------------------------------------------- /networking/update_news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/networking/update_news.py -------------------------------------------------------------------------------- /networking/update_quotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/networking/update_quotes.py -------------------------------------------------------------------------------- /scripts/bypass_checker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/scripts/bypass_checker.js -------------------------------------------------------------------------------- /scripts/custom_reminders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/scripts/custom_reminders.js -------------------------------------------------------------------------------- /scripts/custom_toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/scripts/custom_toast.js -------------------------------------------------------------------------------- /scripts/daily_news.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/scripts/daily_news.js -------------------------------------------------------------------------------- /scripts/flexi_quotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/scripts/flexi_quotes.js -------------------------------------------------------------------------------- /scripts/greetings_toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/scripts/greetings_toast.js -------------------------------------------------------------------------------- /scripts/message_bomber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/scripts/message_bomber.js -------------------------------------------------------------------------------- /scripts/saved_replies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/scripts/saved_replies.js -------------------------------------------------------------------------------- /scripts/scheduled_messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/scripts/scheduled_messages.js -------------------------------------------------------------------------------- /scripts/scheduled_messages_beta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/scripts/scheduled_messages_beta.js -------------------------------------------------------------------------------- /scripts/screenshots/bypass_checker_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/scripts/screenshots/bypass_checker_1.jpg -------------------------------------------------------------------------------- /scripts/screenshots/bypass_checker_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/scripts/screenshots/bypass_checker_2.jpg -------------------------------------------------------------------------------- /scripts/screenshots/custom_reminders_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/scripts/screenshots/custom_reminders_1.jpg -------------------------------------------------------------------------------- /scripts/screenshots/custom_reminders_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/scripts/screenshots/custom_reminders_2.jpg -------------------------------------------------------------------------------- /scripts/screenshots/custom_toast_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/scripts/screenshots/custom_toast_1.jpg -------------------------------------------------------------------------------- /scripts/screenshots/custom_toast_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/scripts/screenshots/custom_toast_2.jpg -------------------------------------------------------------------------------- /scripts/screenshots/daily_news_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/scripts/screenshots/daily_news_1.jpg -------------------------------------------------------------------------------- /scripts/screenshots/daily_news_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/scripts/screenshots/daily_news_2.jpg -------------------------------------------------------------------------------- /scripts/screenshots/flexi_quotes_1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/scripts/screenshots/flexi_quotes_1.jpeg -------------------------------------------------------------------------------- /scripts/screenshots/flexi_quotes_2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/scripts/screenshots/flexi_quotes_2.jpeg -------------------------------------------------------------------------------- /scripts/screenshots/message_bomber_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/scripts/screenshots/message_bomber_1.jpg -------------------------------------------------------------------------------- /scripts/screenshots/message_bomber_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/scripts/screenshots/message_bomber_2.jpg -------------------------------------------------------------------------------- /scripts/screenshots/saved_replies_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/scripts/screenshots/saved_replies_1.jpg -------------------------------------------------------------------------------- /scripts/screenshots/saved_replies_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/scripts/screenshots/saved_replies_2.jpg -------------------------------------------------------------------------------- /scripts/screenshots/scheduled_messages_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/scripts/screenshots/scheduled_messages_1.jpg -------------------------------------------------------------------------------- /scripts/screenshots/scheduled_messages_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/scripts/screenshots/scheduled_messages_2.jpg -------------------------------------------------------------------------------- /scripts/screenshots/webui_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/scripts/screenshots/webui_1.jpg -------------------------------------------------------------------------------- /scripts/screenshots/webui_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/scripts/screenshots/webui_2.jpg -------------------------------------------------------------------------------- /scripts/webui_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/scripts/webui_script.js -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/particle-box/SE-Scripts/HEAD/version.json --------------------------------------------------------------------------------