A Chrome extension for easily capturing and manipulating form parameters, URL parameters, and form data!
- Grab parameters from any form or input field
- Switch between single parameter and all parameters mode
- Built in URL encoder/decoder
- Quick copy to clipboard functionality
- Secure parameter handling (excludes sensitive tokens)
- Right click context menu integration
- Privacy focused - no data collection or tracking
(Coming soon)
⇨ From Node package - Greb
-
npm install @1hehaq/[email protected] # Install from the command line
OR
-
"@1hehaq/greb": "1.0.0" // Install via package.json (remove this comment while installation)
After npm installation:
-
Navigate to the extension directory:
cd node_modules/@1hehaq/greb
-
The extension files are now in this directory. Follow the "Manual Setup" instructions below to load it in Chrome.
- Download the Extension
# Clone the repository git clone https://github.com/1hehaq/greb.git
# Navigate to the project directory cd greb
# Install dependencies npm install
- Open Chrome and navigate to
chrome://extensions/
- Enable "Developer mode" in the top right corner
- Click "Load unpacked"
- Select the directory containing the extension files:
- If installed via npm: Select the
node_modules/@1hehaq/greb
directory - If cloned from repository: Select the
greb
directory
- If installed via npm: Select the
- Pin the extension (optional)
- Look for the Greb icon in your Chrome toolbar
- Right-click on any form field to see the "Grab Parameters" option
-
Single Parameter Mode
- Right-click on any input field
- Select "Grab Parameters" from the context menu
- The parameter will be copied to your clipboard
-
All Parameters Mode
- Click the Greb icon in your toolbar
- Switch to "All Parameters Mode"
- Right-click on any form
- Select "Grab Parameters"
- All form parameters will be copied
- Click the Greb icon in your toolbar
- Paste your URL or parameters in the text area
- Use the buttons to:
Encode → Convert special characters to URL-safe format Decode → Convert encoded URLs back to readable format Copy → Quick copy to clipboard
-
Single Parameter Mode
├── Captures only the selected input field └── Ideal for testing individual parameters
-
All Parameters Mode
├── Captures all parameters from the current form/page └── Perfect for comprehensive testing
├── No sensitive data collection (tokens, CSRF)
├── All operations performed locally
├── Zero external network requests
└── Minimal data storage (user preferences only)
This project is licensed under the Mozilla Public License Version 2.0 - see the LICENSE
file for details.