A collection of useful Tampermonkey scripts for various purposes.
A script that converts webpage content to clean, well-formatted markdown using the Groq API. It preserves images, formatting, and structure while removing unnecessary elements.
Features:
- Converts any webpage content to markdown
- Preserves images (as base64 or URLs)
- Maintains headings, lists, and formatting
- Handles large pages by splitting content
- Easy copy-to-clipboard functionality
- Settings button to update API key
Setup:
- Install the script in Tampermonkey
- Get a Groq API key from console.groq.com
- Enter your API key when prompted
- Click the "📝 Copy Rich Content" button on any webpage
A script to help download multiple e-factura documents. Currently under development.
- Node.js
- pnpm
- TypeScript
# Install dependencies
pnpm install
# Build scripts
pnpm build
# Watch for changes during development
pnpm devCreate a .env file in the root directory with your API keys:
USERSCRIPT_GROQ_API_KEY=your_groq_api_key_here├── src/ # Source TypeScript files
│ ├── groq-webscraper.ts
│ └── efactura-bulk-downloader.ts
├── dist/ # Compiled JavaScript files
├── .env # Environment variables (not committed)
└── build.js # Build script for injecting env variables
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add some amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
ISC License