Data is synced from the Chrome Web Store. View the official store page for the most current information.
BareScript is a minimal userscript manager that lets you run custom JavaScript on any website.
FEATURES • Run custom scripts on any website using @match URL patterns • Simple dashboard for creating and managing scripts • Per-script enable/disable toggle • Familiar userscript metadata format • Global on/off switch • Libraries - create reusable code modules that scripts can import • SPA support - scripts re-run automatically on single-page app navigation
LIGHTWEIGHT & PRIVATE BareScript is built with simplicity in mind. No bloat, no tracking, no data collection. All your scripts and settings are stored locally on your device.
EASY TO USE Create scripts using the familiar userscript format:
// ==BareScript== // @name My Script // @match https://example.com/* // @run-at document-end // ==/BareScript==
console.log('Hello from BareScript!');
SUPPORTED DIRECTIVES • @name - Script name displayed in dashboard • @type - Script type: script (default) or library • @match - URL patterns where the script runs (supports wildcards) • @run-at - When to inject (document-start or document-end)
OPEN SOURCE BareScript is free and open source. View the code and contribute at github.com/flamenkito/barescript
Added: Libraries and SPA support to features, @type to directives.