Migration
Migration guides from other extensions and manual import instructions.
MultiPass
Migration from krtek4/MultiPass (Firefox/Chrome).
- Open the MultiPass Options
- Click:
Download credentials as JSON file. - Open the Auto Auth Options and click
Import File - Select the file exported in Step #2
AutoAuth
Migration from steffanschlein/AutoAuth (Firefox).
- Open Addons Management (about:addons)
Ctrl+Shift+A - Find AutoAuth, click the 3 dots, then click Options
- Open Developer Tools
Ctrl+Shift+Iand go to Console tab - Enter the following code:
await browser.storage.local.get() - Right-click on the resulting output and choose
Copy Object - Go to the Options Page (for this extension) and click
Import Text - Paste the copied text into the textarea and click
Import
Basic Authentication
Migration from Basic Authentication (Chrome).
- Go To this URL:
chrome-extension://nanfgbiblbcagfodkfeinbbhijihckml/options.html - Open Developer Tools
Ctrl+Shift+Iand go to Console tab - Enter the following code:
await chrome.storage.local.get() - Right-click on the resulting output and choose
Copy Object - Go to the Options Page (for this extension) and click
Import Text - Paste the copied text into the textarea and click
Import
Note: Basic Authentication uses url match patterns vs hostnames. This import will attempt to parse the match pattern to a hostname; however, if the full hostname is not provided, may not import correctly. You can always edit the credentials manually or save new ones on the next login.
Other or Manual
To manually migrate from other data exports you need to convert the data into a compatible JSON format. You can do this yourself, or get AI to convert the data format for you. Convert the data to this JSON format:
{
"example.com": "username:password",
"ignored.example.com": "ignored"
}To import the data, visit the extension's Options Page, click Import Text and paste the JSON text.
You can also request a migration be added for your extension. If it is popular enough, it might get added.
💡 If you need help using the extension, support is available...