onde estão armazenados os dados do usuário do Firefox DownThemAll?

2

Eu quero exportar a lista de nomes de arquivos e informações correspondentes, como URLs dos arquivos que baixei usando o DownThemAll (DTA). Mas, até onde eu sei, não tem esse recurso.

Então, eu quero saber onde estão os dados de usuário do DownThemAll armazenados em sistemas Linux e Windows? Estou usando o firefox 23 no Ubuntu / Windows-7.

    
por Tem Pora 15.06.2014 / 10:39

1 resposta

1

Isso responde à sua pergunta.

Resumindo:

DownThemAll does not really store that information at all

  • dta_queue.sqlite does contain the queue information. It is an sqlite database file.
  • The queue table holds the actual information in the "item" column.
  • The "item" column has various properties encoded as json.
  • Within that json structure are the "fileName", "pathName" and "mask" fields along with other fields of interest.
  • The actual path is computed as needed from these values. It is currently not cached anywhere on disk as there really is no need for caching. The code that computes the function is located in branches/1.1.x/chrome/content/dta/manager.js@#L1546.

Concedido, esse bugreport já é antigo, mas não acho que o DTA tenha mudado significativamente desde então.

    
por 15.06.2014 / 11:41