I will update this extension exclusively via the Chrome Web Store from now on. Moving forward, this project will no longer be open-source.
If you have questions or run into any issues, please contact me.
- Website: https://opes.dev
- Support Email: support@opes.dev
- GitHub: https://github.com/opesoid
A browser extension that enhances your experience on the Line6 CustomTone website by providing advanced features for downloading and organizing guitar patches.
- Download patches from multiple pages at once
- Search and filter patches before downloading
- Track download progress
This extension works with Line6 guitar processors including Helix and Pod Go series devices.
The easiest and most secure way to install Patch Collector is directly through the official Chrome Web Store. This ensures you always receive the latest features and automatic background updates.
👉 Install Patch Collector from the Chrome Web Store
This method is primarily for developers or users who need to install a specific legacy version from this archived repository.
-
Download the Source Code:
- Download the Source Code from this GitHub repo.
- Important: Unzip the downloaded file into a dedicated folder on your computer. Remember where you save this folder.
-
Install in Chrome:
- Open Google Chrome.
- Type
chrome://extensions/into the address bar and press Enter. - Enable "Developer mode" using the toggle switch in the top-right corner of the page.
- Click the "Load unpacked" button that appears.
- Navigate to and select the folder where you unzipped the downloaded source code in Step 1.
- The Patch Collector extension icon should now appear in your browser toolbar and in the list on the
chrome://extensions/page.
-
Verify Installation:
- Click the Patch Collector icon in your Chrome toolbar to ensure the popup window opens correctly.
- Visit the Line6 CustomTone website and log in to check if the extension's features appear on the page.
Note: When installing manually, Chrome might display a warning like "Disable developer mode extensions" upon restarting. This is expected. However, be aware that manually installed extensions do not update automatically.
Full usage instructions are available in the extension's built-in guide which can be accessed by clicking the "User Guide" link in the extension popup.
You must be logged into your Line6 CustomTone account to download patches. The extension enhances the download functionality, but you still need a valid account to access the patches.
- Visit the Line6 CustomTone website and log in to your account
- Click the Patch Collector icon in your browser's extension toolbar
- Toggle the switch at the top to enable the extension
- Use the extension panel to download patches
.
├── manifest.json # Extension manifest file
├── README.md # This README file
├── guide.html # User guide page
├── privacy_policy.html # Privacy policy page
│
├── css/
│ └── styles.css # Main CSS styles for content script UI
│
├── icons/
│ ├── icon16.png # Extension icon (16x16)
│ ├── icon48.png # Extension icon (48x48)
│ └── icon128.png # Extension icon (128x128)
│
├── js/
│ ├── constants.js # Constant values
│ ├── content.js # Content script injected into CustomTone pages
│ ├── downloader.js # Handles patch downloading logic
│ ├── modal.js # UI logic for modals
│ ├── progress.js # UI logic for progress indicators
│ ├── ui.js # Builds the main extension UI panel
│ └── utils.js # Utility functions (parsing, helpers)
│
└── popup/
├── popup.html # HTML for the browser action popup
└── popup.js # JavaScript logic for the popup