Bash Script Skeleton Generator - Online Template
Get a safe, ready‑to‑use Bash script template with argument parsing, error handling, and help function. Start scripting faster.
UD5 Toolkit
Generate a complete userscript skeleton with metadata, grants, and ready-to-use code templates.
Define which pages the script should run on.
Select the GM_* APIs your script needs.
@name, @match, @grant) that tell Tampermonkey when and how to execute the script.@match uses a strict pattern-matching syntax defined by Chrome's Match Patterns specification — it's more predictable and secure. @include is the older Greasemonkey-style glob pattern that's more flexible but less strict. Tampermonkey recommends using @match whenever possible. Our generator defaults to @match patterns for better compatibility and security.@grant declares which special GM_* APIs your script needs access to (like GM_setValue for storage or GM_xmlhttpRequest for cross-origin requests). This is a security feature — scripts can only use the APIs they explicitly request. If no @grant is specified, the script runs in the page's context without access to GM APIs. You can also use @grant none explicitly.document-start executes before any page scripts or DOM is loaded — ideal for blocking content or polyfills. document-end fires right after the DOM is ready but before images/iframes finish loading. document-idle (the default) waits until the page is fully loaded and idle — best for most DOM manipulation tasks. Choose based on when your script needs to interact with the page.console.log() for debugging output. For advanced debugging, you can add debugger; statements in your code to set breakpoints. The GM_log() function also writes to Tampermonkey's internal log if granted.@require directive to include external libraries. For example, add // @require https://code.jquery.com/jquery-3.7.1.min.js to your metadata block. The library will be loaded before your script runs. You can add multiple @require lines for different libraries. Our generator's "Advanced Options" section lets you add any number of @require URLs.@connect whitelists domains that your script can make requests to via GM_xmlhttpRequest. Without it, cross-origin requests to domains not listed in @connect will fail. You can specify exact domains like api.example.com or use wildcards like *.example.com. This is a security measure to prevent malicious scripts from exfiltrating data to unknown servers.@match pattern to all sites.'use strict'; at the top of your code to catch common JavaScript errors early.(function(){ ... })(); to avoid polluting the global namespace.GM_xmlhttpRequest, always handle both onload and onerror callbacks for robust error handling.@version updated so Tampermonkey can notify users of updates when using @updateURL.Get a safe, ready‑to‑use Bash script template with argument parsing, error handling, and help function. Start scripting faster.
Generate ultra-secure, random passwords with configurable length and character sets. Created entirely on your device; never transmitted or stored.
Click to generate a multi‑sensory room description for your tabletop RPG. Adds immersion to any dungeon crawl.
Build a CSS media query by selecting feature, operator, and value. Copy the exact syntax for your stylesheet.
Enter a list of words and create a custom word search grid. Choose difficulty, print or export as PDF. Great for teachers.
Upload an image and turn it into a simple digital jigsaw puzzle. Choose number of pieces. Play on screen.
Experiment with the CSS color-mix() function. Pick two colors and mix them in different color spaces (srgb, oklch). Copy the CSS.
Generate a random art style name (e.g., 'Baroque cyberpunk oil painting') for inspiration or AI image generation.
Generate a silly or absurd company policy item. Perfect for a quick laugh during a dull meeting. Local fun.
Create unique magic spell names with descriptions. Perfect for Dungeons & Dragons and creative writing.
Generate SHA‑3 and SHAKE hashes of any text with configurable output length. All local using js library.
Feed, play, and care for a cute pixel pet inside your browser. Its state persists via localStorage. Don't let it die!
Enter a topic and get a list of suggested hashtags. Mix popular and niche tags. Copy all with one click. Local only.
Generate the MD5 hash of any text string. For quick integrity checks. All local computation.
Build a small crossword by adding words and clues. Export as a printable grid or solve in browser. Perfect for classrooms.
Create a custom crossword grid with rotational symmetry. Set grid size and click to place black squares. Export as template.
Upload a photo and add text with stroke, shadow, and opacity. Position anywhere. Download as PNG. Simple caption tool.
Visually name grid areas in a table and generate grid‑template‑areas CSS. Perfect for complex layouts. Drag‑free.
Create a random video game premise with a setting, protagonist, and twist. For game jams and creative writing. All local.
Get three random words as a creative writing prompt. Challenge yourself to use them in a story. No repeat for a while.
Create beautiful, vowel‑heavy names perfect for elves, magical beings, or startups. One‑click generation. Pure frontend.
Paste a media query and instantly check for syntax errors. See if it's correctly formed. Quick developer tool.
Select a short video and convert it to an animated WebP image for faster web loading. Adjust quality and size. Local only.
Upload multiple sizes of the same image and generate the complete srcset and sizes attributes. For perfect responsive performance.
Generate the <meta name='color‑scheme'> tag and CSS property to enable native dark/light rendering. Quick copy.
Drag a virtual ruler across your screen to measure pixel distances. Horizontal and vertical guides. Useful for UI designers checking alignment.
Enter hex codes and download a PNG swatch image with color names. Useful for design spec documents. Built via canvas.
Upload a small pixel art image and get a CSS grid layout that recreates it using divs. Novelty developer tool.
Interactively apply CSS filter functions (blur, brightness, contrast, etc.) to an image and copy the resulting filter property. No coding required.
Add columns with types and constraints, then generate a SQL CREATE TABLE statement. Supports MySQL/PostgreSQL.