Sunday, 11 December 2016

Backup(Export) / Restore(Import) Passwords in Google Chrome

Backup/Export
  • Open Chrome://flags in your Chrome
  • Find Password Import and Export option, select Enabled from the drop-down box, and then restart the Chrome browser
  • Now, open Chrome://settings/passwords page
  • Click on Export button to export/backup saved passwords
  • Enter your Windows account password, when asked
  • Passwords will be saved into a CSV file

Restore/Import
  • Open Chrome://settings/passwords page
  • Click the Import button to restore previously saved passwords


No comments:

SQL: Generate a range of numbers

SELECT ones.n + 10*tens.n + 100*hundreds.n + 1000*thousands.n FROM       (VALUES(0),(1),(2),(3),(4),(5),(6),(7),(8),(9)) ones(n),      (VALU...