Getting Started
This is the shortest path from install to working script.
1. Install CodeTweak
Follow Install CodeTweak.
2. Create a script
- Open CodeTweak popup.
- Click
Create Script. - Paste this:
javascript
// ==UserScript==
// @name Hello CodeTweak
// @match https://example.com/*
// @run-at document-end
// @grant none
// ==/UserScript==
console.log('CodeTweak script running');- Save.
3. Verify it runs
- Open
https://example.com. - Open DevTools console.
- Confirm you see
CodeTweak script running.
4. If it does not run
- Check
@matchfirst. - Check
@run-atsecond. - Open script error logs in the editor.
Next: