FREQUENTLY ASKED QUESTIONS
Have a Question?
Everything you need to know about UnScriptly’s architecture, security, and open-source model.
Sign up to receive news and updates from the UnScriptly team.
Everything you need to know about UnScriptly’s architecture, security, and open-source model.
What exactly is UnScriptly?
UnScriptly is an open-source platform that distributes free, production-grade productivity tools (like CRMs, project managers, and interactive dashboards). Instead of living on an external server or requiring a monthly SaaS subscription, our tools are built directly inside Google Workspace using Google Apps Script and custom HTML/CSS frontends.
Is it actually 100% free? What’s the catch?
Yes, it is entirely free. There are no premium tiers, paywalls, or hidden feature limits. We believe that small businesses, developers, and creators shouldn't be squeezed by endless subscription traps. We build these tools to support the open-source community. Our growth is driven by community word-of-mouth and voluntary contributions.
Why do I need to enter my email via Deftforms to download a tool?
We use Deftforms as a lightweight lead capture gate for one crucial reason: updates. Because you clone our tools directly into your personal Google Drive via a /copy link, we have no physical way to "push" automatic software updates or security hotfixes to your file. By capturing your email, we can notify you instantly when V2 of a tool drops or when an important bug fix is available. We will never sell your email or spam you.
Can UnScriptly see my data?
Absolutely not. This is the core benefit of our architecture. When you click our distribution link, Google creates an exact clone of our spreadsheet and code container directly into your Google Drive. You are the sole host and owner. UnScriptly has zero visibility into your rows, your files, your clients, or your usage metrics.
Why does Google show an "Unverified App" warning when I first run a tool?
⚠️ Don't panic! This is completely normal for cloned scripts.
Because you are running a fresh copy of the Google Apps Script code under your own Google account, Google’s security system flags it as an "unverified app" because it hasn't been audited through Google's centralized cloud console for commercial public deployment.
Since you own the code, you are technically authorizing yourself to execute it on your own data. To bypass this, click "Advanced" and then "Go to [Project Name] (unsafe)" during the first launch. Because our tools are entirely open-source, you can review every single line of code in the script editor before hitting authorize to ensure it is safe.
What is the "Zero-Formula Paradigm"?
Traditional Google Sheets rely on heavy formulas (VLOOKUP, INDEX/MATCH, QUERY) typed directly into cell ranges. These are highly fragile; if an end-user accidentally types over a formula cell or deletes a row, the entire spreadsheet breaks.
UnScriptly treats Google Sheets strictly as a headless relational database. Cells only hold raw data. All sorting, calculations, filtering, and relational mappings are handled in the background by our Apps Script engine using raw JavaScript arrays. The user interacts with a modern HTML/Tailwind web interface, leaving the backend spreadsheet pristine, lightning-fast, and completely unbreakable.
How do UnScriptly tools perform compared to regular spreadsheets?
Significantly faster, especially with large datasets. Traditional sheets recalculate thousands of cell formulas every time a single edit is made, causing major lag. UnScriptly minimizes server roundtrips by wrapping range reads into single, batched getValues() arrays and committing edits using atomic setValues() blocks. This keeps processing efficient and smooth.
Can I modify the code or change the design?
Yes! In fact, we encourage it. Every tool is built to be modular, readable, and highly extensible. You can open the Extensions menu (Extensions > Apps Script) in your copied sheet to tweak the logic, adjust the custom Tailwind CSS styling, or add entirely new features to fit your exact workflow.
I found a bug or want to request a feature. What should I do?
We love community feedback. Inside the custom menu of every UnScriptly tool, you will find a "Report Bug / Request Feature" button. This will open a dedicated Deftform where you can submit details directly to our engineering pipeline. Alternatively, you can open an issue on our official community forum.