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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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 } |