A Chrome extension that allows you to extract text from PDF files and paste it directly into text fields on enabled websites.
- Extract text from PDF files with drag-and-drop functionality
- Automatically adds upload buttons next to text inputs and textareas
- Configure which websites the extension works on
- Simple and intuitive popup interface for site management
- Supports both main domains and subdomains
- Works offline - no server required
- Clone this repository or download the ZIP file
git clone https://github.com/yourusername/pdf-text-extractor.git
- Open Chrome and navigate to
chrome://extensions/
- Enable "Developer mode" in the top right corner
- Click "Load unpacked" and select the extension directory
pdf-text-extractor/
├── manifest.json
├── popup.html
├── popup.js
├── content-loader.js
├── content.js
├── build/
│ ├── pdf.mjs
│ └── pdf.worker.mjs
└── web/
├── cmaps/
└── standard_fonts/
- Click the extension icon in your Chrome toolbar
- Add websites where you want the extension to work:
- Type a domain manually (e.g., "example.com")
- Or click "Add Current Site" to add the current website
- Visit an enabled website
- Look for the upload button next to text inputs
- Click the upload button and select a PDF file
- The extracted text will be automatically inserted into the input field
- Click the extension icon
- Enter the domain name in the input field
- Click "Add Site" or press Enter
- Click the extension icon
- Find the site in the list
- Click the × button next to the site name
- Chrome browser
- Basic understanding of JavaScript and Chrome extensions
- Make changes to the code
- Go to
chrome://extensions/
- Click the refresh icon on your extension card
- Test your changes
manifest.json
: Extension configurationpopup.html/js
: Site management interfacecontent-loader.js
: Initializes the extension on web pagescontent.js
: Main PDF processing functionality
- PDF.js: Mozilla's PDF rendering engine
- No external services or APIs required
- Chrome (Version 88+)
- Other Chromium-based browsers (Edge, Brave, etc.)
- Only works with text-based PDFs
- Some PDFs with complex layouts might not extract perfectly
- Maximum file size depends on available memory
- Check if the current site is in the enabled list
- Verify the PDF file is readable and not corrupted
- Try refreshing the page
- Check the console for error messages
- PDF Not Loading: Ensure the file is a valid PDF
- No Upload Button: Refresh the page or check if site is enabled
- Extraction Failed: The PDF might be image-based or protected
- Fork the repository
- Create a feature branch
git checkout -b feature/AmazingFeature
- Commit your changes
git commit -m 'Add some AmazingFeature'
- Push to the branch
git push origin feature/AmazingFeature
- Open a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details.
- PDF.js by Mozilla
- Chrome Extensions documentation
For support, please open an issue in the GitHub repository.