FB Pix Downloader
Gets all ya tagged pix from FB
O que é FB Pix Downloader?
FB Pix Downloader é uma extensão do Chrome desenvolvida por Rob Clouth, e sua principal característica é "Gets all ya tagged pix from FB".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão FB Pix Downloader
Baixe arquivos de extensão FB Pix Downloader no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Now that people are starting to flee Facebook, FB Pix Downloader helps you to get all your tagged pics of FB. Because you're not the owner of these pictures, it's a bit laborious to manually download them. This extension automates a lot of the process. Usage: 1. Install the extension. 2. Make sure you're using the new Facebook design 3. Go to your Facebook profile photos, select the "Photos of You" tab and scroll all the way to the bottom so that all the thumbnails have loaded 4. Click on the FB Pix Downloader extension icon in the top right of the browser window. 5. The pictures will all download into a subfolder of your downloads folder called "Facebook Photos" Note: the photos are only properly timestamped from 2012 or so, when Facebook started timestamping the image files. I'm too lazy to figure out how to parse the uploaded date from the Facebook HTML for the early photos. But at least they're in order.
Informações Básicas da Extensão
Nome | |
ID | eiboklegfgbapjhnehmnngihpmjalflh |
URL Oficial | https://chrome.google.com/webstore/detail/fb-pix-downloader/eiboklegfgbapjhnehmnngihpmjalflh |
Descrição | Gets all ya tagged pix from FB |
Tamanho do Arquivo | 550 KB |
Contagem de Instalações | 943 |
Versão Atual | 1.0 |
Última Atualização | 2020-12-15 |
Data de Publicação | 2020-12-15 |
Classificação | 4.83/5 Total de 12 Avaliações |
Desenvolvedor | Rob Clouth |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/robclouth/Facebook-Pix-Downloader |
URL da Página de Ajuda | https://github.com/robclouth/Facebook-Pix-Downloader |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "FB Pix Downloader", "description": "Gets all ya tagged pix from FB", "version": "1.0", "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "background": { "scripts": [ "fecha.min.js", "piexif.js", "background.js" ] }, "browser_action": { "default_title": "FB Pix Downloader" }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/www.facebook.com\/*" ] } ], "permissions": [ "downloads", "https:\/\/*.facebook.com\/*" ], "manifest_version": 2 } |