<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:media="http://search.yahoo.com/mrss/"
	
	>

<channel>
	<title>ContentCore</title>
	<link>https://contentcore.xyz</link>
	<description>ContentCore</description>
	<pubDate>Fri, 04 Apr 2025 23:36:39 +0000</pubDate>
	<generator>https://contentcore.xyz</generator>
	<language>en</language>
	
		
	<item>
		<title>app</title>
				
		<link>https://contentcore.xyz/app</link>

		<pubDate>Fri, 04 Apr 2025 23:36:39 +0000</pubDate>

		<dc:creator>ContentCore</dc:creator>

		<guid isPermaLink="true">https://contentcore.xyz/app</guid>

		<description>
        function signUpLoad() {
            let iframe = document.getElementById('allowDownload');
            let url = new URL(iframe.contentWindow.location.href);
            if (url.href.includes('signup-success')) {
                localStorage.setItem('allowDownloadClicked', 'true');
                setTimeout(() =&#62; document.getElementById('signUpContainer').style.display = 'none', 3000);
        
                let childIframe = document.getElementById('app');
                childIframe.contentWindow.postMessage('downloadAllowed', 'https://files.cargocollective.com');
        
                document.getElementById('customer-portal-pop-over-signed-in').style.display = 'grid';
                document.getElementById('customer-portal-sign-in-trigger').style.display = 'none';
                document.getElementById('billing-trigger').style.display = 'flex';
                document.getElementById('sign-up-trigger').style.display = 'none';
            }
        }    
        
        Sitemap
        
        Create content in one place. Incredibly fast. Export as images or videos.
        
        
            
                
            
            
        
        
        
            
                
            
            
        
        
        
        
        
            
                Pricing &#38;amp; License
                
                    
                    
                
                Sign up
            
            
                
                    Subscriber Portal
                    Open
                
                
                 
                 
                    
                    
                        No active subscriptions?
                    
                    
                        Upgrade now to license your created content: full unlimited usage, modifications, distribution, and resale rights.
                    
                    
                        
                            
                            
                                
                                    $9.99 / mo
                                    Pay monthly
                                
                                
                            
                        
                        
                            
                            
                                
                                    $5.99 / mo
                                    
                                        $71.88 yearly Save $48
                                    
                                
                                
                            
                        
                    
                    
                        Upgrade now
                        
                    
                    
                        
                            
                                &#60;img src="https://freight.cargo.site/t/original/i/6256f243eeecdb6ff82dbbd0cc00bd9596b4b5805b065d7b14e97dc2a6f0aaf4/qr-code-image-icon.png" alt="Content Core"&#62;
                             
                            or&#38;nbsp;Pay with mobile
                        
                    
                    
                        
                    
                
                
                
                    Sign in / Sign up
                    
                
            
        
        
        
            
                
                    
                
                
            
         
        
        
            
        
        
        
        
        
        
        
        // Closes the sign-up container
        function closesignUpContainer() {
            document.getElementById("signUpContainer").style.display = "none";
        }
        
        // Message listener for communication with iframe
        window.addEventListener("message", function(e) {
            let iframe = document.getElementById('allowDownload');
            if (e.origin === "https://files.cargocollective.com" &#38;&#38; (
                e.data === "saveImageClickedForAnalytics" &#38;&#38; document.getElementById("analyticsElement").click(),
                e.data === "saveVideoClickedForAnalytics" &#38;&#38; document.getElementById("analyticsVideoElement").click(),
                e.data === "saveImageClicked" &#124;&#124; e.data === "saveVideoClicked")) {
        
                localStorage.setItem("pendingAction", e.data);
        
                if (localStorage.getItem("allowDownloadClicked") === "true") {
                    let appIframe = document.getElementById("app");
                    let actionMessage = (localStorage.getItem("pendingAction") === "saveImageClicked") ? "imageDownloadAllowed" : "videoDownloadAllowed";
                    appIframe.contentWindow.postMessage(actionMessage, "https://files.cargocollective.com");
                } else {
                    document.getElementById("signUpContainer").style.display = "flex";
                    if (!iframe.src) {
                        iframe.src = 'https://contentcore.xyz/signup';
                    }
                }
            }
        });
        
        // DOMContentLoaded event for setting up interactions
        document.addEventListener("DOMContentLoaded", function() {
            let signUpContainer = document.getElementById('signUpContainer');
            let iframe = document.getElementById('allowDownload');
        
            document.getElementById("sign-up-trigger").addEventListener("click", function(e) {
                signUpContainer.style.display = "flex";
                if (!iframe.src) iframe.src = 'https://contentcore.xyz/signup';
                e.stopPropagation();
            });
        
            document.getElementById("customer-portal-sign-in-trigger").addEventListener("click", function(e) {
                signUpContainer.style.display = "flex";
                if (!iframe.src) iframe.src = 'https://contentcore.xyz/signup';
                e.stopPropagation();
            });
        
            document.addEventListener("click", function(e) {
                let targetIsInsideIframe = iframe &#38;&#38; iframe.contains(e.target);
                if (!targetIsInsideIframe &#38;&#38; signUpContainer.style.display !== "none") {
                    signUpContainer.style.display = "none";
                }
            });
        
            // Automatically restore signed-in state if user has already signed up
            if (localStorage.getItem("allowDownloadClicked") === "true") {
                document.getElementById("customer-portal-pop-over-signed-in").style.display = "grid";
                document.getElementById("customer-portal-sign-in-trigger").style.display = "none";
                document.getElementById("billing-trigger").style.display = "flex";
                document.getElementById("sign-up-trigger").style.display = "none";
            }
        
            // Dropdown functionality for account trigger
            document.getElementById("account-trigger").addEventListener("click", function() {
                let customerPortal = document.getElementById("customer-portal-pop-over");
                let chevronIcon = document.querySelector(".chevron-down-icon");
                if (customerPortal.style.display === "flex") {
                    customerPortal.style.display = "none";
                    chevronIcon.classList.remove("active");
                } else {
                    customerPortal.style.display = "flex";
                    chevronIcon.classList.add("active");
                }
            });
        
            // Pricing button interaction
            document.getElementById("pricing-trigger").addEventListener("click", function() {
                let pricingOverlay = document.getElementById("pricing-overlay");
                let menuPricingPage = document.getElementById("menu-pricing-page");
                if (!menuPricingPage.getAttribute("src")) {
                    menuPricingPage.setAttribute("src", "https://contentcore.xyz/pricing");
                }
                pricingOverlay.style.display = "flex";
            });
        
            // Closing modals
            document.querySelectorAll(".overlay-modal-container-close-button").forEach(button =&#62; {
                button.addEventListener("click", function() {
                    let parentContainer = this.parentElement;
                    parentContainer.style.display = "none";
                    parentContainer.querySelector("iframe").setAttribute("src", "");
                });
            });
        });
    
        // Handle pricing options
    document.addEventListener("DOMContentLoaded", function () {
        let pricingLinks = {
            monthly: "https://buy.stripe.com/bIYdRIgyT0cs5hefYZ",
            yearly: "https://buy.stripe.com/7sI6pg2I32kA6liaEG"
        };
    
        let pricingOptions = document.getElementsByName("pricing");
        let upgradeButton = document.getElementById("upgrade-button");
        let payWithMobileButton = document.getElementById("pay-with-mobile");
    
        pricingOptions.forEach(function (option) {
            option.addEventListener("change", function () {
                if (option.checked) {
                    upgradeButton.href = pricingLinks[option.value];
                    sessionStorage.setItem("paymentOption", option.value);
    
                    pricingOptions.forEach(function (opt) {
                        document.getElementById(opt.id + "-selector-xs").classList.remove("selected");
                    });
                    document.getElementById(option.id + "-selector-xs").classList.add("selected");
                }
            });
    
            if (option.checked) option.dispatchEvent(new Event("change"));
        });
    
        payWithMobileButton.addEventListener("click", function (event) {
            event.preventDefault();
            let overlay = document.getElementById("pay-with-mobile-overlay");
            document.getElementById("pay-with-mobile-overlay-page").setAttribute("src", "https://contentcore.xyz/pay-with-mobile");
            overlay.style.display = "flex";
        });
    });
        </description>
		
	</item>
		
	</channel>
</rss>