Skip to content
This repository was archived by the owner on Mar 1, 2023. It is now read-only.
This repository was archived by the owner on Mar 1, 2023. It is now read-only.

Request: Option to export and import credentials. #13

@ViniciusFXavier

Description

@ViniciusFXavier

The reason is very simple, today I use it to authenticate, but I have to format my computer so I'll lose all my keys or I'll have to save it by hand. D:

The idea is to put a way to export and import the keys, to maintain security it would be good to have some kind of password encryption for this exported file and when it is re-imported you have to enter the same password, plus an option to export without password.

Maybe you can also use google's own API with the storage.sync function to sync them across the user's other devices.
https://developer.chrome.com/docs/extensions/reference/storage/

// Save
chrome.storage.sync.set({ name: 'Vinícius' }, function() {
  console.log('Name saved');
});

// Later on...
chrome.storage.sync.get('name', function(r) {
  console.log('Name retrieved: ' + r['name']);
});

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions