ScriptFlow is a userscript manager alternative for people who prefer userscript managers more or less built as a development suite for developers and people who work with large projects, including features such as:
- Folders
- Importing
- Editing environments
- & Web injection across any site
- Installation
- How it works
- Browser Support
- Core Features
- About "Allow User Scripts"
- Screenshots
- Support Development
- Clone or download as ZIP
- Open
chrome://extensions - Enable Developer Mode
- Click Load Unpacked → select ScriptFlow folder inside of the unzipped folder
- Enable "Allow User Scripts" (Scriptflow wont work as intended without this enabled)
ScriptFlow, as previously mentioned in the first category, is primarily aimed as a userscript manager/development suite.
For editing files within ScriptFlow, you may notice the metadata block format is different from other userscript managers as following:
Expand to view
Scriptflow:
/*
@ScriptFlow
{
"name": "New Script",
"description": "A brief description of your script",
"match": [
"https://example.com/*"
]
}
*/
(function() {
'use strict';
console.log('ScriptFlow script loaded!');
})();Tampermonkey:
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 2025-12-24
// @description try to take over the world!
// @author You
// @match https://*/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// ==/UserScript==
(function() {
'use strict';
console.log("Hello World")
})();This is done intentionally, for both readability and just being easier to use.
Using @match as an example, commonly used in Tampermonkey and ViolentMonkey, it goes from:
// @match https://*/*To:
"match": ["all"]Which is both a 10 character difference and also more versatile, allowing you to do "all" rather than having to do *://*/*.
| ✅ Supported | ❌ Unsupported |
|---|---|
| Chrome (v120+) | Firefox |
| Edge | Safari |
| Brave | |
| Opera | |
| Arc | |
| Vivaldi |
ScriptFlow uses Chrome's userScripts API. Firefox and Safari don't have it.
| Feature | Support |
|---|---|
ES Modules (import/export) |
✅ |
CommonJS (require/module.exports) |
✅ |
| JSON imports | ✅ |
| CSS auto-injection | ✅ |
Relative paths (./, ../) |
✅ |
| Entry point configuration | ✅ |
| Circular dependency detection | ✅ |
require.context() |
✅ |
| Lazy module loading | ✅ |
// main.js
import { greet } from './greet.js';
import config from './config.json';
greet(config.name);// greet.js
export function greet(name) {
console.log('Hello', name);
}Uses the File System Access API
- Load any local folder as a workspace
- Changes sync automatically
- Permission persists across sessions
- Create/rename/delete files in the explorer
When saving a file, It will also automatically update the script as well, so you dont need to both save the file and save the script
| Currently supported for the Editor | |
|---|---|
| Syntax highlighting | ✅ |
| Autocomplete & IntelliSense | ✅ |
| Code formatting (Ctrl+H) | ✅ |
| Command palette (Ctrl+[) | ✅ |
| File explorer sidebar (Ctrl+B) | ✅ |
| Multiple themes | Dracula, Monokai, VS Dark, VS Light, Solarized |
| Configurable font size | 10-30px |
| Tab size | 2-8 spaces |
| Line numbers | On, Off, Relative |
| Minimap | Toggle on/off |
| Word wrap | Toggle on/off |
| Large file handling | Optimized for files >200KB |
To make the experience better, ScriptFlow also has intergration with Github, allowing you to do the following without having to leave the workspace:
- Clone repositories
- Pull/push changes
- Select branches
- View Repository history (quick access to recent repos)
- GitHub PAT authentication
- Push your local workspace to new repo
Uses isomorphic-git
Fully compatible with the following standard userscript APIs:
| API | Description |
|---|---|
GM_addStyle(css) |
Inject CSS into pages |
GM_setValue(key, value) |
Persistent storage |
GM_getValue(key, default) |
Read from storage |
GM_deleteValue(key) |
Delete stored value |
GM_listValues() |
List all stored keys |
GM_xmlhttpRequest(details) |
Cross-origin requests |
GM_getResourceText(name) |
Access embedded resources |
GM_openInTab(url) |
Open URLs in new tabs |
GM_setClipboard(text) |
Copy to clipboard |
GM_setHTML(el, html) |
Safe innerHTML (Trusted Types) |
GM_info |
Script metadata |
GM_log(msg) |
Styled console logging |
unsafeWindow |
Direct page window access |
| Tool | Description |
|---|---|
| JavaScript Console | Allows for code execution on any tab from the extension |
| Memory Inspector | Draggable overlay showing live memory usage |
| Debug Logging | Toggles detailed console outputting |
| Time Tracking | Tracks time spent editing each script |
| Feature | |
|---|---|
| Export project as ZIP | ✅ |
| Export all data (JSON backup) | ✅ |
| Import from JSON backup | ✅ |
| Import Tampermonkey/Violentmonkey backups | ✅ (ZIP with .user.js files) |
| Install from URL | Click any .user.js link to install |
| Export as bundled userscript | Single-file with proper headers |
Opens a Picture-in-Picture window which:
- Loads your HTML/CSS/JS together
- Resolves imports the same way
- Updates instantly when you save
⚠️ Do note this is not a full browser environment, which means there is no site JS or extensions.
| Setting | Options |
|---|---|
| Run At | document_start, document_end, document_idle |
| URL patterns | https://*.example.com/* |
| Exclude patterns | Skip specific URLs |
| Execution delay | Customizable 0-5000ms delay before running |
| Manual run | Execute from popup |
| Auto-update check | Never, Daily, Weekly, Monthly |
- Upload custom background images (PNG, JPG, GIF up to 10MB)
- Adjust opacity and blur
- Multiple UI themes (Dark Purple, Dark Blue, Dark Forest, Midnight, Amber)
- Basic Script — Minimal structure
- DOM Manipulation — Ready for DOM mods
- AJAX Interceptor — Fetch/XHR interception
- CSS Injection — Ad-blocking and styling
- Utility Functions — Helpers like
waitForElement()
When you enable ScriptFlow, Chrome warns you:
"This extension can run code that hasn't been reviewed by Google"
This is expected.
Why?
- ScriptFlow uses the
userScriptsAPI (same as Tampermonkey) - You're writing code that runs on websites
- Chrome warns because it's powerful
Is it safe?
- Code is open source (check it yourself)
- No minification or obfuscation
- No telemetry or tracking
- No external requests unless you add them
If ScriptFlow makes your life easier, consider buying me a coffee!
ScriptFlow will always remain free and open source.
Your support helps me:
- Build new features
- Fix bugs faster
- Keep it free and open source
Author: Kusoi
Discord Server: https://discord.com/invite/gwC7KW3j7v






