impulse-blocker icon indicating copy to clipboard operation
impulse-blocker copied to clipboard

Add import / export function

Open Crote opened this issue 6 years ago • 2 comments

I use this addon on multiple machines and it is a bit annoying to add entries to them multiple times. It would save a lot of time if this addon had a vim vixen-style way to import and export settings

Crote avatar Nov 23 '17 20:11 Crote

A small work around for you suggestion. Through the console on the options page of the extension, you can sync the site's to an other browsers with the following command browser.storage.local.get('sites').then((storage)=>{browser.storage.sync.set({'sites':storage.sites})});.

In another browser you can import the sites with the command browser.storage.sync.get('sites').then((storage)=>{browser.storage.local.set({'sites':storage,sites})});.

glkx avatar Feb 25 '18 11:02 glkx

Note that it would not work on FF Android, as it does not support storage.sync.

Crote avatar Mar 16 '18 00:03 Crote