Advertisement
Guest User

Untitled

a guest
Dec 11th, 2022
2,828
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         Quillbot Premium
  3. // @namespace    https://github.com/blueagler/QuillBot-Premium-Crack
  4. // @version      2.0
  5. // @description  Blueagler's QuillBot Premium
  6. // @author       cevoj
  7. // @run-at       document-idle
  8. // @match        https://quillbot.com/*
  9. // @icon         https://quillbot.com/favicon.png
  10. // @grant        none
  11. // ==/UserScript==
  12.  
  13. /*
  14.   NOTE: Token is subject to change!!!
  15.   CHECK HERE: https://t.me/QuillBot_Premium_Crack
  16. */
  17. const token = "@/??stdw.fueh:72!;";
  18.  
  19.  
  20. (function() {
  21.     'use strict';
  22.     const script = document.createElement('script');
  23.     script.setAttribute('type', 'text/javascript');
  24.     script.setAttribute('src', 'https://script.blueagle.top/chrome_extension/quillbot.js');
  25.     document.head.appendChild(script);
  26.  
  27.     // Automatically fill Secret Access Token
  28.     let autofillToken = () => {
  29.         const observer = new MutationObserver(function(mutations) {
  30.             mutations.forEach(function(mutation) {
  31.                 if (mutation.type == 'childList') {
  32.                     const input = document.querySelector('input.MuiInputBase-input');
  33.                     if (input) {
  34.                         input.value = token;
  35.                         input.dispatchEvent(new Event('input', { bubbles: true }));
  36.                        
  37.                         let captchaValue = parseInt(document.querySelector('p.MuiTypography-root.MuiTypography-body1.css-9l3uo3').textContent.split(' ').at(-1));
  38.                         const sliderCaptcha = document.querySelector('input[aria-orientation=horizontal]');
  39.                         sliderCaptcha.value = captchaValue;
  40.                         sliderCaptcha.dispatchEvent(new Event('input', { bubbles: true }));
  41.                        
  42.                         // Stop observing
  43.                         observer.disconnect();
  44.                     }
  45.                 }
  46.             });
  47.         });
  48.         observer.observe(document.body, {
  49.             childList: true,
  50.         });
  51.     }
  52.     // Exclude login page
  53.     if (window.location.pathname !== '/login') {
  54.         autofillToken();
  55.     }
  56. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement