FB Pix Downloader
Gets all ya tagged pix from FB
什麼是FB Pix Downloader?
FB Pix Downloader是由Rob Clouth開發的Chrome擴展程式,該擴展的主要功能是“Gets all ya tagged pix from FB”。
擴展截圖
下載FB Pix Downloader擴展crx文件
下載FB Pix Downloader擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | |
ID | eiboklegfgbapjhnehmnngihpmjalflh |
官方網址 | https://chrome.google.com/webstore/detail/fb-pix-downloader/eiboklegfgbapjhnehmnngihpmjalflh |
簡介 | Gets all ya tagged pix from FB |
檔案大小 | 550 KB |
安裝次數 | 943 |
目前版本 | 1.0 |
更新時間 | 2020-12-15 |
上架時間 | 2020-12-15 |
評分 | 4.83/5 共 12 次評分 |
開發者 | Rob Clouth |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/robclouth/Facebook-Pix-Downloader |
說明頁面URL | https://github.com/robclouth/Facebook-Pix-Downloader |
支援的語言 | 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 } |